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 423079449b5c59bb8d48c56d36e9cd8872bf233b..d444801edc489e268626263ac59369f0aa7c472c 100644 |
--- a/content/browser/gpu/gpu_process_host.cc |
+++ b/content/browser/gpu/gpu_process_host.cc |
@@ -970,8 +970,11 @@ bool GpuProcessHost::LaunchGpuProcess(gpu::GpuPreferences* gpu_preferences) { |
base::CommandLine* cmd_line = new base::CommandLine(exe_path); |
#endif |
+ |
cmd_line->AppendSwitchASCII(switches::kProcessType, switches::kGpuProcess); |
- BrowserChildProcessHostImpl::CopyFeatureAndFieldTrialFlags(cmd_line); |
+ |
+ field_trial_state_ = |
+ BrowserChildProcessHostImpl::CopyFeatureAndFieldTrialFlags(cmd_line); |
#if defined(OS_WIN) |
cmd_line->AppendArg(switches::kPrefetchArgumentGpu); |
@@ -1015,10 +1018,8 @@ bool GpuProcessHost::LaunchGpuProcess(gpu::GpuPreferences* gpu_preferences) { |
cmd_line->PrependWrapper(gpu_launcher); |
process_->Launch( |
- new GpuSandboxedProcessLauncherDelegate(cmd_line, |
- process_->GetHost()), |
- cmd_line, |
- true); |
+ new GpuSandboxedProcessLauncherDelegate(cmd_line, process_->GetHost()), |
+ cmd_line, field_trial_state_.get(), true); |
process_launched_ = true; |
UMA_HISTOGRAM_ENUMERATION("GPU.GPUProcessLifetimeEvents", |