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 // IPC messages for page rendering. | 5 // IPC messages for page rendering. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include "base/process.h" | 8 #include "base/process.h" |
9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 IPC_STRUCT_TRAITS_MEMBER(device_supports_touch) | 237 IPC_STRUCT_TRAITS_MEMBER(device_supports_touch) |
238 IPC_STRUCT_TRAITS_MEMBER(device_supports_mouse) | 238 IPC_STRUCT_TRAITS_MEMBER(device_supports_mouse) |
239 IPC_STRUCT_TRAITS_MEMBER(default_tile_width) | 239 IPC_STRUCT_TRAITS_MEMBER(default_tile_width) |
240 IPC_STRUCT_TRAITS_MEMBER(default_tile_height) | 240 IPC_STRUCT_TRAITS_MEMBER(default_tile_height) |
241 IPC_STRUCT_TRAITS_MEMBER(max_untiled_layer_width) | 241 IPC_STRUCT_TRAITS_MEMBER(max_untiled_layer_width) |
242 IPC_STRUCT_TRAITS_MEMBER(max_untiled_layer_height) | 242 IPC_STRUCT_TRAITS_MEMBER(max_untiled_layer_height) |
243 IPC_STRUCT_TRAITS_MEMBER(fixed_position_creates_stacking_context) | 243 IPC_STRUCT_TRAITS_MEMBER(fixed_position_creates_stacking_context) |
244 IPC_STRUCT_TRAITS_MEMBER(sync_xhr_in_documents_enabled) | 244 IPC_STRUCT_TRAITS_MEMBER(sync_xhr_in_documents_enabled) |
245 IPC_STRUCT_TRAITS_MEMBER(number_of_cpu_cores) | 245 IPC_STRUCT_TRAITS_MEMBER(number_of_cpu_cores) |
246 IPC_STRUCT_TRAITS_MEMBER(cookie_enabled) | 246 IPC_STRUCT_TRAITS_MEMBER(cookie_enabled) |
| 247 IPC_STRUCT_TRAITS_MEMBER(apply_page_scale_factor_in_compositor) |
247 IPC_STRUCT_TRAITS_END() | 248 IPC_STRUCT_TRAITS_END() |
248 | 249 |
249 IPC_STRUCT_TRAITS_BEGIN(WebMenuItem) | 250 IPC_STRUCT_TRAITS_BEGIN(WebMenuItem) |
250 IPC_STRUCT_TRAITS_MEMBER(label) | 251 IPC_STRUCT_TRAITS_MEMBER(label) |
251 IPC_STRUCT_TRAITS_MEMBER(toolTip) | 252 IPC_STRUCT_TRAITS_MEMBER(toolTip) |
252 IPC_STRUCT_TRAITS_MEMBER(type) | 253 IPC_STRUCT_TRAITS_MEMBER(type) |
253 IPC_STRUCT_TRAITS_MEMBER(action) | 254 IPC_STRUCT_TRAITS_MEMBER(action) |
254 IPC_STRUCT_TRAITS_MEMBER(rtl) | 255 IPC_STRUCT_TRAITS_MEMBER(rtl) |
255 IPC_STRUCT_TRAITS_MEMBER(has_directional_override) | 256 IPC_STRUCT_TRAITS_MEMBER(has_directional_override) |
256 IPC_STRUCT_TRAITS_MEMBER(enabled) | 257 IPC_STRUCT_TRAITS_MEMBER(enabled) |
(...skipping 2215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2472 | 2473 |
2473 // Perform a seek. | 2474 // Perform a seek. |
2474 IPC_MESSAGE_ROUTED2(ViewHostMsg_MediaPlayerSeek, | 2475 IPC_MESSAGE_ROUTED2(ViewHostMsg_MediaPlayerSeek, |
2475 int /* player_id */, | 2476 int /* player_id */, |
2476 base::TimeDelta /* time */) | 2477 base::TimeDelta /* time */) |
2477 | 2478 |
2478 // Start the player for playback. | 2479 // Start the player for playback. |
2479 IPC_MESSAGE_ROUTED1(ViewHostMsg_MediaPlayerStart, | 2480 IPC_MESSAGE_ROUTED1(ViewHostMsg_MediaPlayerStart, |
2480 int /* player_id */) | 2481 int /* player_id */) |
2481 #endif | 2482 #endif |
OLD | NEW |