| 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_CLIENT_COMMAND_BUFFER_PROXY_IMPL_H_ | 5 #ifndef GPU_IPC_CLIENT_COMMAND_BUFFER_PROXY_IMPL_H_ |
| 6 #define GPU_IPC_CLIENT_COMMAND_BUFFER_PROXY_IMPL_H_ | 6 #define GPU_IPC_CLIENT_COMMAND_BUFFER_PROXY_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 #include "base/threading/thread_checker.h" | 24 #include "base/threading/thread_checker.h" |
| 25 #include "gpu/command_buffer/client/gpu_control.h" | 25 #include "gpu/command_buffer/client/gpu_control.h" |
| 26 #include "gpu/command_buffer/common/command_buffer.h" | 26 #include "gpu/command_buffer/common/command_buffer.h" |
| 27 #include "gpu/command_buffer/common/command_buffer_id.h" | 27 #include "gpu/command_buffer/common/command_buffer_id.h" |
| 28 #include "gpu/command_buffer/common/command_buffer_shared.h" | 28 #include "gpu/command_buffer/common/command_buffer_shared.h" |
| 29 #include "gpu/command_buffer/common/gpu_memory_allocation.h" | 29 #include "gpu/command_buffer/common/gpu_memory_allocation.h" |
| 30 #include "gpu/gpu_export.h" | 30 #include "gpu/gpu_export.h" |
| 31 #include "gpu/ipc/common/gpu_stream_constants.h" | 31 #include "gpu/ipc/common/gpu_stream_constants.h" |
| 32 #include "gpu/ipc/common/surface_handle.h" | 32 #include "gpu/ipc/common/surface_handle.h" |
| 33 #include "ipc/ipc_listener.h" | 33 #include "ipc/ipc_listener.h" |
| 34 #include "ui/events/latency_info.h" | |
| 35 #include "ui/gfx/swap_result.h" | 34 #include "ui/gfx/swap_result.h" |
| 36 #include "ui/gl/gpu_preference.h" | 35 #include "ui/gl/gpu_preference.h" |
| 36 #include "ui/latency/latency_info.h" |
| 37 | 37 |
| 38 struct GPUCommandBufferConsoleMessage; | 38 struct GPUCommandBufferConsoleMessage; |
| 39 struct GPUCreateCommandBufferConfig; | 39 struct GPUCreateCommandBufferConfig; |
| 40 struct GpuCommandBufferMsg_SwapBuffersCompleted_Params; | 40 struct GpuCommandBufferMsg_SwapBuffersCompleted_Params; |
| 41 class GURL; | 41 class GURL; |
| 42 | 42 |
| 43 namespace base { | 43 namespace base { |
| 44 class SharedMemory; | 44 class SharedMemory; |
| 45 } | 45 } |
| 46 | 46 |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 | 294 |
| 295 base::WeakPtr<CommandBufferProxyImpl> weak_this_; | 295 base::WeakPtr<CommandBufferProxyImpl> weak_this_; |
| 296 scoped_refptr<base::SequencedTaskRunner> callback_thread_; | 296 scoped_refptr<base::SequencedTaskRunner> callback_thread_; |
| 297 | 297 |
| 298 DISALLOW_COPY_AND_ASSIGN(CommandBufferProxyImpl); | 298 DISALLOW_COPY_AND_ASSIGN(CommandBufferProxyImpl); |
| 299 }; | 299 }; |
| 300 | 300 |
| 301 } // namespace gpu | 301 } // namespace gpu |
| 302 | 302 |
| 303 #endif // GPU_IPC_CLIENT_COMMAND_BUFFER_PROXY_IMPL_H_ | 303 #endif // GPU_IPC_CLIENT_COMMAND_BUFFER_PROXY_IMPL_H_ |
| OLD | NEW |