| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 // Multiply-included message file, hence no include guard here, but see below | 5 // Multiply-included message file, hence no include guard here, but see below |
| 6 // for a much smaller-than-usual include guard section. | 6 // for a much smaller-than-usual include guard section. |
| 7 | 7 |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "content/common/content_export.h" | 9 #include "content/common/content_export.h" |
| 10 #include "content/common/establish_channel_params.h" | 10 #include "content/common/establish_channel_params.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "ipc/ipc_message_macros.h" | 21 #include "ipc/ipc_message_macros.h" |
| 22 #include "ipc/ipc_message_start.h" | 22 #include "ipc/ipc_message_start.h" |
| 23 #include "ui/events/ipc/latency_info_param_traits.h" | 23 #include "ui/events/ipc/latency_info_param_traits.h" |
| 24 #include "ui/gfx/gpu_memory_buffer.h" | 24 #include "ui/gfx/gpu_memory_buffer.h" |
| 25 #include "ui/gfx/ipc/gfx_param_traits.h" | 25 #include "ui/gfx/ipc/gfx_param_traits.h" |
| 26 #include "url/gurl.h" | 26 #include "url/gurl.h" |
| 27 #include "url/ipc/url_param_traits.h" | 27 #include "url/ipc/url_param_traits.h" |
| 28 | 28 |
| 29 #if defined(OS_MACOSX) | 29 #if defined(OS_MACOSX) |
| 30 #include "content/common/accelerated_surface_buffers_swapped_params_mac.h" | 30 #include "content/common/accelerated_surface_buffers_swapped_params_mac.h" |
| 31 #include "content/common/gpu/buffer_presented_params_mac.h" | 31 #include "content/common/buffer_presented_params_mac.h" |
| 32 #include "ui/base/cocoa/remote_layer_api.h" | 32 #include "ui/base/cocoa/remote_layer_api.h" |
| 33 #include "ui/gfx/mac/io_surface.h" | 33 #include "ui/gfx/mac/io_surface.h" |
| 34 #endif | 34 #endif |
| 35 | 35 |
| 36 #undef IPC_MESSAGE_EXPORT | 36 #undef IPC_MESSAGE_EXPORT |
| 37 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT | 37 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT |
| 38 | 38 |
| 39 #define IPC_MESSAGE_START GpuMsgStart | 39 #define IPC_MESSAGE_START GpuMsgStart |
| 40 | 40 |
| 41 IPC_STRUCT_TRAITS_BEGIN(gpu::GPUMemoryUmaStats) | 41 IPC_STRUCT_TRAITS_BEGIN(gpu::GPUMemoryUmaStats) |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 // so the browser should stop sending the corresponding information | 290 // so the browser should stop sending the corresponding information |
| 291 IPC_MESSAGE_CONTROL2(GpuHostMsg_RemoveSubscription, | 291 IPC_MESSAGE_CONTROL2(GpuHostMsg_RemoveSubscription, |
| 292 int32_t /* client_id */, | 292 int32_t /* client_id */, |
| 293 unsigned int /* target */) | 293 unsigned int /* target */) |
| 294 | 294 |
| 295 // Message from GPU to add a GPU log message to the about:gpu page. | 295 // Message from GPU to add a GPU log message to the about:gpu page. |
| 296 IPC_MESSAGE_CONTROL3(GpuHostMsg_OnLogMessage, | 296 IPC_MESSAGE_CONTROL3(GpuHostMsg_OnLogMessage, |
| 297 int /*severity*/, | 297 int /*severity*/, |
| 298 std::string /* header */, | 298 std::string /* header */, |
| 299 std::string /* message */) | 299 std::string /* message */) |
| OLD | NEW |