Index: content/browser/gpu/gpu_process_host.cc |
diff --git a/content/browser/gpu/gpu_process_host.cc b/content/browser/gpu/gpu_process_host.cc |
index 0612fca154769dd1626f9b688fe43fec39e6bff7..87e19fc77c11d0f58a87da64c3e431ad8bb3532e 100644 |
--- a/content/browser/gpu/gpu_process_host.cc |
+++ b/content/browser/gpu/gpu_process_host.cc |
@@ -49,8 +49,8 @@ enum GPUProcessLifetimeEvent { |
}; |
// A global map from GPU process host ID to GpuProcessHost. |
-static base::LazyInstance<IDMap<GpuProcessHost> > g_hosts_by_id( |
- base::LINKER_INITIALIZED); |
+static base::LazyInstance<IDMap<GpuProcessHost> > g_hosts_by_id = |
+ LAZY_INSTANCE_INITIALIZER; |
// Number of times the gpu process has crashed in the current browser session. |
static int g_gpu_crash_count = 0; |
@@ -561,7 +561,6 @@ bool GpuProcessHost::LaunchGpuProcess() { |
switches::kGpuStartupDialog, |
switches::kLoggingLevel, |
switches::kNoSandbox, |
- switches::kTraceStartup, |
}; |
cmd_line->CopySwitchesFrom(browser_command_line, kSwitchNames, |
arraysize(kSwitchNames)); |