| 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 CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_H_ | 5 #ifndef CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_H_ |
| 6 #define CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_H_ | 6 #define CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "gpu/config/gpu_info.h" | 27 #include "gpu/config/gpu_info.h" |
| 28 #include "gpu/ipc/common/surface_handle.h" | 28 #include "gpu/ipc/common/surface_handle.h" |
| 29 #include "ipc/ipc_sender.h" | 29 #include "ipc/ipc_sender.h" |
| 30 #include "ipc/message_filter.h" | 30 #include "ipc/message_filter.h" |
| 31 #include "ui/gfx/geometry/size.h" | 31 #include "ui/gfx/geometry/size.h" |
| 32 #include "ui/gfx/gpu_memory_buffer.h" | 32 #include "ui/gfx/gpu_memory_buffer.h" |
| 33 #include "url/gurl.h" | 33 #include "url/gurl.h" |
| 34 | 34 |
| 35 struct GPUCreateCommandBufferConfig; | 35 struct GPUCreateCommandBufferConfig; |
| 36 | 36 |
| 37 namespace base { |
| 38 class Thread; |
| 39 } |
| 40 |
| 37 namespace IPC { | 41 namespace IPC { |
| 38 struct ChannelHandle; | 42 struct ChannelHandle; |
| 39 } | 43 } |
| 40 | 44 |
| 41 namespace gpu { | 45 namespace gpu { |
| 42 struct GpuPreferences; | 46 struct GpuPreferences; |
| 43 struct SyncToken; | 47 struct SyncToken; |
| 44 } | 48 } |
| 45 | 49 |
| 46 namespace shell { | 50 namespace shell { |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 ClientIdToShaderCacheMap client_id_to_shader_cache_; | 291 ClientIdToShaderCacheMap client_id_to_shader_cache_; |
| 288 | 292 |
| 289 std::string shader_prefix_key_; | 293 std::string shader_prefix_key_; |
| 290 | 294 |
| 291 DISALLOW_COPY_AND_ASSIGN(GpuProcessHost); | 295 DISALLOW_COPY_AND_ASSIGN(GpuProcessHost); |
| 292 }; | 296 }; |
| 293 | 297 |
| 294 } // namespace content | 298 } // namespace content |
| 295 | 299 |
| 296 #endif // CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_H_ | 300 #endif // CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_H_ |
| OLD | NEW |