mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
use webPreferences to disable devtools
This commit is contained in:
@@ -83,10 +83,6 @@ Window::Window(v8::Isolate* isolate, v8::Local<v8::Object> wrapper,
|
||||
v8::Local<v8::Value> transparent;
|
||||
if (options.Get("transparent", &transparent))
|
||||
web_preferences.Set("transparent", transparent);
|
||||
|
||||
// Disable WebContents.OpenDevTools() ?
|
||||
if (options.Get(options::kDisableDevTools, &value))
|
||||
web_preferences.Set(options::kDisableDevTools, value);
|
||||
|
||||
// Creates the WebContents used by BrowserWindow.
|
||||
auto web_contents = WebContents::Create(isolate, web_preferences);
|
||||
|
||||
@@ -96,9 +96,6 @@ const char kNodeIntegration[] = "nodeIntegration";
|
||||
// Instancd ID of guest WebContents.
|
||||
const char kGuestInstanceID[] = "guestInstanceId";
|
||||
|
||||
// Diable openDevTools.
|
||||
const char kDisableDevTools[] = "disableDevTools";
|
||||
|
||||
// Web runtime features.
|
||||
const char kExperimentalFeatures[] = "experimentalFeatures";
|
||||
const char kExperimentalCanvasFeatures[] = "experimentalCanvasFeatures";
|
||||
|
||||
@@ -46,7 +46,6 @@ extern const char kBackgroundColor[];
|
||||
extern const char kHasShadow[];
|
||||
extern const char kFocusable[];
|
||||
extern const char kWebPreferences[];
|
||||
extern const char kDisableDevTools[];
|
||||
|
||||
// WebPreferences.
|
||||
extern const char kZoomFactor[];
|
||||
|
||||
Reference in New Issue
Block a user