| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 GPU_IPC_SERVICE_GPU_COMMAND_BUFFER_STUB_H_ | 5 #ifndef GPU_IPC_SERVICE_GPU_COMMAND_BUFFER_STUB_H_ |
| 6 #define GPU_IPC_SERVICE_GPU_COMMAND_BUFFER_STUB_H_ | 6 #define GPU_IPC_SERVICE_GPU_COMMAND_BUFFER_STUB_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "gpu/command_buffer/common/gpu_memory_allocation.h" | 22 #include "gpu/command_buffer/common/gpu_memory_allocation.h" |
| 23 #include "gpu/command_buffer/service/command_buffer_service.h" | 23 #include "gpu/command_buffer/service/command_buffer_service.h" |
| 24 #include "gpu/command_buffer/service/context_group.h" | 24 #include "gpu/command_buffer/service/context_group.h" |
| 25 #include "gpu/command_buffer/service/sequence_id.h" | 25 #include "gpu/command_buffer/service/sequence_id.h" |
| 26 #include "gpu/gpu_export.h" | 26 #include "gpu/gpu_export.h" |
| 27 #include "gpu/ipc/common/surface_handle.h" | 27 #include "gpu/ipc/common/surface_handle.h" |
| 28 #include "gpu/ipc/service/gpu_memory_manager.h" | 28 #include "gpu/ipc/service/gpu_memory_manager.h" |
| 29 #include "gpu/ipc/service/image_transport_surface_delegate.h" | 29 #include "gpu/ipc/service/image_transport_surface_delegate.h" |
| 30 #include "ipc/ipc_listener.h" | 30 #include "ipc/ipc_listener.h" |
| 31 #include "ipc/ipc_sender.h" | 31 #include "ipc/ipc_sender.h" |
| 32 #include "ui/events/latency_info.h" | |
| 33 #include "ui/gfx/geometry/size.h" | 32 #include "ui/gfx/geometry/size.h" |
| 34 #include "ui/gfx/gpu_memory_buffer.h" | 33 #include "ui/gfx/gpu_memory_buffer.h" |
| 35 #include "ui/gfx/swap_result.h" | 34 #include "ui/gfx/swap_result.h" |
| 36 #include "ui/gl/gl_surface.h" | 35 #include "ui/gl/gl_surface.h" |
| 37 #include "ui/gl/gpu_preference.h" | 36 #include "ui/gl/gpu_preference.h" |
| 37 #include "ui/latency/latency_info.h" |
| 38 #include "url/gurl.h" | 38 #include "url/gurl.h" |
| 39 | 39 |
| 40 struct GPUCreateCommandBufferConfig; | 40 struct GPUCreateCommandBufferConfig; |
| 41 struct GpuCommandBufferMsg_CreateImage_Params; | 41 struct GpuCommandBufferMsg_CreateImage_Params; |
| 42 | 42 |
| 43 namespace gl { | 43 namespace gl { |
| 44 class GLShareGroup; | 44 class GLShareGroup; |
| 45 } | 45 } |
| 46 | 46 |
| 47 namespace gpu { | 47 namespace gpu { |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 | 251 |
| 252 std::unique_ptr<WaitForCommandState> wait_for_token_; | 252 std::unique_ptr<WaitForCommandState> wait_for_token_; |
| 253 std::unique_ptr<WaitForCommandState> wait_for_get_offset_; | 253 std::unique_ptr<WaitForCommandState> wait_for_get_offset_; |
| 254 | 254 |
| 255 DISALLOW_COPY_AND_ASSIGN(GpuCommandBufferStub); | 255 DISALLOW_COPY_AND_ASSIGN(GpuCommandBufferStub); |
| 256 }; | 256 }; |
| 257 | 257 |
| 258 } // namespace gpu | 258 } // namespace gpu |
| 259 | 259 |
| 260 #endif // GPU_IPC_SERVICE_GPU_COMMAND_BUFFER_STUB_H_ | 260 #endif // GPU_IPC_SERVICE_GPU_COMMAND_BUFFER_STUB_H_ |
| OLD | NEW |