Index: content/gpu/gpu_main.cc |
diff --git a/content/gpu/gpu_main.cc b/content/gpu/gpu_main.cc |
index c790dd69a7c0826fa14b8af50fc6c48fd62c40c1..0acc5bb65ed213a682ab714c935fe2cf34a8a5c3 100644 |
--- a/content/gpu/gpu_main.cc |
+++ b/content/gpu/gpu_main.cc |
@@ -10,7 +10,6 @@ |
#endif |
#include "base/debug/trace_event.h" |
-#include "base/environment.h" |
#include "base/lazy_instance.h" |
#include "base/message_loop/message_loop.h" |
#include "base/metrics/histogram.h" |
@@ -213,16 +212,6 @@ int GpuMain(const MainFunctionParams& parameters) { |
watchdog_thread->StartWithOptions(options); |
} |
- // Temporarily disable DRI3 on desktop Linux. |
- // The GPU process is crashing on DRI3-enabled desktop Linux systems. |
- // TODO(jorgelo): remove this when crbug.com/415681 is fixed. |
-#if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
- { |
- scoped_ptr<base::Environment> env(base::Environment::Create()); |
- env->SetVar("LIBGL_DRI3_DISABLE", "1"); |
- } |
-#endif |
- |
gpu::GPUInfo gpu_info; |
// Get vendor_id, device_id, driver_version from browser process through |
// commandline switches. |