Chromium Code Reviews| Index: content/public/browser/gpu_utils.cc |
| diff --git a/content/public/browser/gpu_utils.cc b/content/public/browser/gpu_utils.cc |
| index 113545daceb9942ac5b3824465764c4ae09382d8..b5b602c95cd474fb3af1f017fd08259dd9a42e51 100644 |
| --- a/content/public/browser/gpu_utils.cc |
| +++ b/content/public/browser/gpu_utils.cc |
| @@ -105,9 +105,6 @@ const gpu::GpuPreferences GetGpuPreferencesFromCommandLine() { |
| command_line->HasSwitch(switches::kEnableGPUServiceLogging); |
| gpu_preferences.enable_gpu_service_tracing = |
| command_line->HasSwitch(switches::kEnableGPUServiceTracing); |
| - gpu_preferences.enable_unsafe_es3_apis = |
| - command_line->HasSwitch(switches::kEnableUnsafeES3APIs) && |
| - !command_line->HasSwitch(switches::kDisableES3APIs); |
|
Ken Russell (switch to Gerrit)
2016/11/03 21:50:42
Could you add a comment here (perhaps at the very
Kai Ninomiya
2016/11/03 22:10:06
Done.
|
| gpu_preferences.use_passthrough_cmd_decoder = |
| command_line->HasSwitch(switches::kUsePassthroughCmdDecoder); |
| return gpu_preferences; |