| Index: content/browser/browser_main_loop.cc
|
| diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc
|
| index e275446d81c6b8100afd81919d4623049eeb0721..f9235bdbbb6f60c9e94f79e1e650633d3535192d 100644
|
| --- a/content/browser/browser_main_loop.cc
|
| +++ b/content/browser/browser_main_loop.cc
|
| @@ -753,13 +753,10 @@ int BrowserMainLoop::PreCreateThreads() {
|
| #if defined(USE_X11) && !defined(OS_CHROMEOS)
|
| // PreCreateThreads is called before CreateStartupTasks which starts the gpu
|
| // process.
|
| - bool enable_transparent_visuals =
|
| - !GpuDataManagerImpl::GetInstance()->IsDriverBugWorkaroundActive(
|
| - gpu::DISABLE_TRANSPARENT_VISUALS);
|
| + bool enable_transparent_visuals = false;
|
|
|
| // Prevent this flag to be turned off later since it is only used here.
|
| - if (!enable_transparent_visuals &&
|
| - !GpuDataManagerImpl::GetInstance()->IsCompleteGpuInfoAvailable()) {
|
| + if (!GpuDataManagerImpl::GetInstance()->IsCompleteGpuInfoAvailable()) {
|
| base::CommandLine::ForCurrentProcess()->AppendSwitch(
|
| "disable_transparent_visuals");
|
| }
|
|
|