| Index: content/browser/gpu/compositor_util.cc
|
| diff --git a/content/browser/gpu/compositor_util.cc b/content/browser/gpu/compositor_util.cc
|
| index 96cee0a12a2fa87d632fb63ccbe0f33003e73619..171ef768420a38c9ea653343553df8cd875ddf2a 100644
|
| --- a/content/browser/gpu/compositor_util.cc
|
| +++ b/content/browser/gpu/compositor_util.cc
|
| @@ -272,18 +272,12 @@ bool IsGpuRasterizationEnabled() {
|
| else if (command_line.HasSwitch(switches::kEnableGpuRasterization))
|
| return true;
|
|
|
| - if (command_line.HasSwitch(
|
| - switches::kEnableBleedingEdgeRenderingFastPaths)) {
|
| - return true;
|
| - }
|
| -
|
| if (GpuDataManagerImpl::GetInstance()->IsFeatureBlacklisted(
|
| gpu::GPU_FEATURE_TYPE_GPU_RASTERIZATION)) {
|
| return false;
|
| }
|
|
|
| - // Change this to true to turn on the feature by default.
|
| - return false;
|
| + return true;
|
| }
|
|
|
| bool IsForceGpuRasterizationEnabled() {
|
|
|