OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #include "base/string_piece.h" | 5 #include "base/string_piece.h" |
6 #include "base/sys_string_conversions.h" | 6 #include "base/sys_string_conversions.h" |
7 #include "chrome/common/gpu_create_command_buffer_config.h" | 7 #include "chrome/common/gpu_create_command_buffer_config.h" |
8 #include "chrome/common/gpu_info.h" | 8 #include "chrome/common/gpu_info.h" |
9 #include "chrome/common/dx_diag_node.h" | 9 #include "chrome/common/dx_diag_node.h" |
10 #include "gfx/rect.h" | |
11 #include "gfx/size.h" | |
12 #include "ipc/ipc_channel_handle.h" | 10 #include "ipc/ipc_channel_handle.h" |
| 11 #include "ui/gfx/rect.h" |
| 12 #include "ui/gfx/size.h" |
13 | 13 |
14 #define IPC_MESSAGE_IMPL | 14 #define IPC_MESSAGE_IMPL |
15 #include "chrome/common/gpu_messages.h" | 15 #include "chrome/common/gpu_messages.h" |
16 | 16 |
17 #if defined(OS_MACOSX) | 17 #if defined(OS_MACOSX) |
18 | 18 |
19 // Parameters for the GpuHostMsg_AcceleratedSurfaceSetIOSurface | 19 // Parameters for the GpuHostMsg_AcceleratedSurfaceSetIOSurface |
20 // message, which has too many parameters to be sent with the | 20 // message, which has too many parameters to be sent with the |
21 // predefined IPC macros. | 21 // predefined IPC macros. |
22 GpuHostMsg_AcceleratedSurfaceSetIOSurface_Params:: | 22 GpuHostMsg_AcceleratedSurfaceSetIOSurface_Params:: |
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 } | 267 } |
268 return true; | 268 return true; |
269 } | 269 } |
270 | 270 |
271 void ParamTraits<GPUCreateCommandBufferConfig> ::Log( | 271 void ParamTraits<GPUCreateCommandBufferConfig> ::Log( |
272 const param_type& p, std::string* l) { | 272 const param_type& p, std::string* l) { |
273 l->append("<GPUCreateCommandBufferConfig>"); | 273 l->append("<GPUCreateCommandBufferConfig>"); |
274 } | 274 } |
275 | 275 |
276 } // namespace IPC | 276 } // namespace IPC |
OLD | NEW |