| Index: content/renderer/gpu/gpu_benchmarking_extension.cc
|
| diff --git a/content/renderer/gpu/gpu_benchmarking_extension.cc b/content/renderer/gpu/gpu_benchmarking_extension.cc
|
| index 1eb6ef33c09af37fb66fa8e02df2b9d3e6fa2d0c..5dea12b54fbac9865fdbc19eda97ba8c0e39476b 100644
|
| --- a/content/renderer/gpu/gpu_benchmarking_extension.cc
|
| +++ b/content/renderer/gpu/gpu_benchmarking_extension.cc
|
| @@ -14,7 +14,7 @@
|
| #include "base/macros.h"
|
| #include "base/strings/string_number_conversions.h"
|
| #include "cc/layers/layer.h"
|
| -#include "content/common/gpu/gpu_messages.h"
|
| +#include "content/common/gpu/gpu_browser_messages.h"
|
| #include "content/common/input/synthetic_gesture_params.h"
|
| #include "content/common/input/synthetic_pinch_gesture_params.h"
|
| #include "content/common/input/synthetic_smooth_drag_gesture_params.h"
|
| @@ -878,7 +878,7 @@ bool GpuBenchmarking::HasGpuChannel() {
|
| bool GpuBenchmarking::HasGpuProcess() {
|
| bool has_gpu_process = false;
|
| if (!RenderThreadImpl::current()->Send(
|
| - new GpuHostMsg_HasGpuProcess(&has_gpu_process)))
|
| + new GpuBrowserHostMsg_HasGpuProcess(&has_gpu_process)))
|
| return false;
|
|
|
| return has_gpu_process;
|
|
|