diff options
Diffstat (limited to 'content/browser/plugin_process_host.cc')
-rw-r--r-- | content/browser/plugin_process_host.cc | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/content/browser/plugin_process_host.cc b/content/browser/plugin_process_host.cc index 8aa69dd..b6d54b9 100644 --- a/content/browser/plugin_process_host.cc +++ b/content/browser/plugin_process_host.cc @@ -205,15 +205,9 @@ bool PluginProcessHost::Init(const WebPluginInfo& info) { // any associated values) if present in the browser command line static const char* const kSwitchNames[] = { switches::kDisableBreakpad, -#if defined(OS_MACOSX) - switches::kDisableCoreAnimationPlugins, - switches::kEnableSandboxLogging, -#endif + switches::kDisableDirectNPAPIRequests, switches::kEnableStatsTable, switches::kFullMemoryCrashReport, -#if defined(OS_WIN) - switches::kHighDPISupport, -#endif switches::kLoggingLevel, switches::kLogPluginMessages, switches::kNoSandbox, @@ -221,6 +215,13 @@ bool PluginProcessHost::Init(const WebPluginInfo& info) { switches::kTestSandbox, switches::kTraceStartup, switches::kUseGL, +#if defined(OS_MACOSX) + switches::kDisableCoreAnimationPlugins, + switches::kEnableSandboxLogging, +#endif +#if defined(OS_WIN) + switches::kHighDPISupport, +#endif }; cmd_line->CopySwitchesFrom(browser_command_line, kSwitchNames, |