| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_GPU_GPU_COMMAND_BUFFER_STUB_H_ | 5 #ifndef CONTENT_GPU_GPU_COMMAND_BUFFER_STUB_H_ |
| 6 #define CHROME_GPU_GPU_COMMAND_BUFFER_STUB_H_ | 6 #define CONTENT_GPU_GPU_COMMAND_BUFFER_STUB_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #if defined(ENABLE_GPU) | 9 #if defined(ENABLE_GPU) |
| 10 | 10 |
| 11 #include <vector> | 11 #include <vector> |
| 12 #include <string> | 12 #include <string> |
| 13 | 13 |
| 14 #include "base/process.h" | 14 #include "base/process.h" |
| 15 #include "base/weak_ptr.h" | 15 #include "base/weak_ptr.h" |
| 16 #include "gpu/command_buffer/service/command_buffer_service.h" | 16 #include "gpu/command_buffer/service/command_buffer_service.h" |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 int32 render_view_id_; | 121 int32 render_view_id_; |
| 122 | 122 |
| 123 scoped_ptr<gpu::CommandBufferService> command_buffer_; | 123 scoped_ptr<gpu::CommandBufferService> command_buffer_; |
| 124 scoped_ptr<gpu::GPUProcessor> processor_; | 124 scoped_ptr<gpu::GPUProcessor> processor_; |
| 125 | 125 |
| 126 DISALLOW_COPY_AND_ASSIGN(GpuCommandBufferStub); | 126 DISALLOW_COPY_AND_ASSIGN(GpuCommandBufferStub); |
| 127 }; | 127 }; |
| 128 | 128 |
| 129 #endif // defined(ENABLE_GPU) | 129 #endif // defined(ENABLE_GPU) |
| 130 | 130 |
| 131 #endif // CHROME_GPU_GPU_COMMAND_BUFFER_STUB_H_ | 131 #endif // CONTENT_GPU_GPU_COMMAND_BUFFER_STUB_H_ |
| OLD | NEW |