| Index: content/browser/renderer_host/render_process_host_impl.cc
|
| diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
|
| index 06aadbae41cb0ceb098b7a751bcc4f84ce03ec0e..052d8a59651ba22a74d0e57fbcdcc4447e2739f7 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -1209,6 +1209,9 @@ static void AppendCompositorCommandLineFlags(base::CommandLine* command_line) {
|
| if (IsGpuRasterizationEnabled())
|
| command_line->AppendSwitch(switches::kEnableGpuRasterization);
|
|
|
| + if (IsAsyncWorkerContextEnabled())
|
| + command_line->AppendSwitch(switches::kEnableGpuAsyncWorkerContext);
|
| +
|
| int msaa_sample_count = GpuRasterizationMSAASampleCount();
|
| if (msaa_sample_count >= 0) {
|
| command_line->AppendSwitchASCII(switches::kGpuRasterizationMSAASampleCount,
|
|
|