| Index: gpu/command_buffer/service/gpu_scheduler.h
|
| diff --git a/gpu/command_buffer/service/gpu_scheduler.h b/gpu/command_buffer/service/gpu_scheduler.h
|
| index 22ab07fe8871fa4369fdff63c70ff93c03ead121..5e073ca54e51c10164970e535db40e5735ddf707 100644
|
| --- a/gpu/command_buffer/service/gpu_scheduler.h
|
| +++ b/gpu/command_buffer/service/gpu_scheduler.h
|
| @@ -15,9 +15,9 @@
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/memory/shared_memory.h"
|
| #include "base/memory/weak_ptr.h"
|
| -#include "gpu/command_buffer/common/command_buffer.h"
|
| #include "gpu/command_buffer/service/cmd_buffer_engine.h"
|
| #include "gpu/command_buffer/service/cmd_parser.h"
|
| +#include "gpu/command_buffer/service/command_buffer_service.h"
|
| #include "gpu/command_buffer/service/gles2_cmd_decoder.h"
|
| #include "gpu/gpu_export.h"
|
|
|
| @@ -52,7 +52,7 @@ class GPU_EXPORT GpuScheduler
|
| : NON_EXPORTED_BASE(public CommandBufferEngine),
|
| public base::SupportsWeakPtr<GpuScheduler> {
|
| public:
|
| - GpuScheduler(CommandBuffer* command_buffer,
|
| + GpuScheduler(CommandBufferServiceBase* command_buffer,
|
| AsyncAPIInterface* handler,
|
| gles2::GLES2Decoder* decoder);
|
|
|
| @@ -114,7 +114,7 @@ class GPU_EXPORT GpuScheduler
|
| // The GpuScheduler holds a weak reference to the CommandBuffer. The
|
| // CommandBuffer owns the GpuScheduler and holds a strong reference to it
|
| // through the ProcessCommands callback.
|
| - CommandBuffer* command_buffer_;
|
| + CommandBufferServiceBase* command_buffer_;
|
|
|
| // The parser uses this to execute commands.
|
| AsyncAPIInterface* handler_;
|
|
|