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 2209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2466 | 2467 |
2467 // Perform a seek. | 2468 // Perform a seek. |
2468 IPC_MESSAGE_ROUTED2(ViewHostMsg_MediaPlayerSeek, | 2469 IPC_MESSAGE_ROUTED2(ViewHostMsg_MediaPlayerSeek, |
2469 int /* player_id */, | 2470 int /* player_id */, |
2470 base::TimeDelta /* time */) | 2471 base::TimeDelta /* time */) |
2471 | 2472 |
2472 // Start the player for playback. | 2473 // Start the player for playback. |
2473 IPC_MESSAGE_ROUTED1(ViewHostMsg_MediaPlayerStart, | 2474 IPC_MESSAGE_ROUTED1(ViewHostMsg_MediaPlayerStart, |
2474 int /* player_id */) | 2475 int /* player_id */) |
2475 #endif | 2476 #endif |
OLD | NEW |