| Index: gpu/command_buffer/service/query_manager.h
|
| diff --git a/gpu/command_buffer/service/query_manager.h b/gpu/command_buffer/service/query_manager.h
|
| index 1103477779503df6571af494da522bb4fa4fb71d..a132c6aacd0eec687a779fbce783efb35a0f6487 100644
|
| --- a/gpu/command_buffer/service/query_manager.h
|
| +++ b/gpu/command_buffer/service/query_manager.h
|
| @@ -19,9 +19,9 @@
|
| #include "gpu/command_buffer/service/feature_info.h"
|
| #include "gpu/gpu_export.h"
|
|
|
| -namespace gfx {
|
| - class GPUTimer;
|
| - class GPUTimingClient;
|
| +namespace gl {
|
| +class GPUTimer;
|
| +class GPUTimingClient;
|
| }
|
|
|
| namespace gpu {
|
| @@ -262,7 +262,7 @@ class GPU_EXPORT QueryManager {
|
| return decoder_;
|
| }
|
|
|
| - std::unique_ptr<gfx::GPUTimer> CreateGPUTimer(bool elapsed_time);
|
| + std::unique_ptr<gl::GPUTimer> CreateGPUTimer(bool elapsed_time);
|
| bool GPUTimingAvailable();
|
|
|
| void GenQueries(GLsizei n, const GLuint* queries);
|
| @@ -338,7 +338,7 @@ class GPU_EXPORT QueryManager {
|
| // Async pixel transfer queries waiting for completion.
|
| QueryQueue pending_transfer_queries_;
|
|
|
| - scoped_refptr<gfx::GPUTimingClient> gpu_timing_client_;
|
| + scoped_refptr<gl::GPUTimingClient> gpu_timing_client_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(QueryManager);
|
| };
|
|
|