| Index: content/browser/gpu/compositor_util.cc
|
| diff --git a/content/browser/gpu/compositor_util.cc b/content/browser/gpu/compositor_util.cc
|
| index a7960b35b747d3fcda9045b1f06a79bf73b43f3d..2095b71b8cec0400f615d5af02a7168b509cdf74 100644
|
| --- a/content/browser/gpu/compositor_util.cc
|
| +++ b/content/browser/gpu/compositor_util.cc
|
| @@ -30,11 +30,11 @@ static bool IsGpuRasterizationBlacklisted() {
|
| gpu::GPU_FEATURE_TYPE_GPU_RASTERIZATION);
|
| }
|
|
|
| -const char* kGpuCompositingFeatureName = "gpu_compositing";
|
| -const char* kWebGLFeatureName = "webgl";
|
| -const char* kRasterizationFeatureName = "rasterization";
|
| -const char* kMultipleRasterThreadsFeatureName = "multiple_raster_threads";
|
| -const char* kNativeGpuMemoryBuffersFeatureName = "native_gpu_memory_buffers";
|
| +const char kGpuCompositingFeatureName[] = "gpu_compositing";
|
| +const char kWebGLFeatureName[] = "webgl";
|
| +const char kRasterizationFeatureName[] = "rasterization";
|
| +const char kMultipleRasterThreadsFeatureName[] = "multiple_raster_threads";
|
| +const char kNativeGpuMemoryBuffersFeatureName[] = "native_gpu_memory_buffers";
|
|
|
| const int kMinRasterThreads = 1;
|
| const int kMaxRasterThreads = 4;
|
|
|