Index: content/browser/gpu/gpu_data_manager_impl_private.cc |
diff --git a/content/browser/gpu/gpu_data_manager_impl_private.cc b/content/browser/gpu/gpu_data_manager_impl_private.cc |
index b235fa8766391f8b7ffd3efaee93b45a7b0d893d..b769491f926120e3437b8213f3d5133590003966 100644 |
--- a/content/browser/gpu/gpu_data_manager_impl_private.cc |
+++ b/content/browser/gpu/gpu_data_manager_impl_private.cc |
@@ -719,13 +719,6 @@ void GpuDataManagerImplPrivate::AppendGpuCommandLine( |
if (gpu_info_.optimus) |
reduce_sandbox = true; |
- if (gpu_info_.amd_switchable) { |
- // The image transport surface currently doesn't work with AMD Dynamic |
- // Switchable graphics. |
- reduce_sandbox = true; |
- command_line->AppendSwitch(switches::kDisableImageTransportSurface); |
- } |
- |
if (reduce_sandbox) |
command_line->AppendSwitch(switches::kReduceGpuSandbox); |
@@ -890,8 +883,6 @@ bool GpuDataManagerImplPrivate::IsUsingAcceleratedSurface() const { |
if (base::win::GetVersion() < base::win::VERSION_VISTA) |
return false; |
- if (gpu_info_.amd_switchable) |
- return false; |
if (use_swiftshader_) |
return false; |
CommandLine* command_line = CommandLine::ForCurrentProcess(); |