| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 IPC_STRUCT_TRAITS_BEGIN(WebKit::WebMediaPlayerAction) | 111 IPC_STRUCT_TRAITS_BEGIN(WebKit::WebMediaPlayerAction) |
| 112 IPC_STRUCT_TRAITS_MEMBER(type) | 112 IPC_STRUCT_TRAITS_MEMBER(type) |
| 113 IPC_STRUCT_TRAITS_MEMBER(enable) | 113 IPC_STRUCT_TRAITS_MEMBER(enable) |
| 114 IPC_STRUCT_TRAITS_END() | 114 IPC_STRUCT_TRAITS_END() |
| 115 | 115 |
| 116 IPC_STRUCT_TRAITS_BEGIN(WebKit::WebPluginAction) | 116 IPC_STRUCT_TRAITS_BEGIN(WebKit::WebPluginAction) |
| 117 IPC_STRUCT_TRAITS_MEMBER(type) | 117 IPC_STRUCT_TRAITS_MEMBER(type) |
| 118 IPC_STRUCT_TRAITS_MEMBER(enable) | 118 IPC_STRUCT_TRAITS_MEMBER(enable) |
| 119 IPC_STRUCT_TRAITS_END() | 119 IPC_STRUCT_TRAITS_END() |
| 120 | 120 |
| 121 IPC_STRUCT_TRAITS_BEGIN(WebKit::WebPoint) | |
| 122 IPC_STRUCT_TRAITS_MEMBER(x) | |
| 123 IPC_STRUCT_TRAITS_MEMBER(y) | |
| 124 IPC_STRUCT_TRAITS_END() | |
| 125 | |
| 126 IPC_STRUCT_TRAITS_BEGIN(WebKit::WebRect) | |
| 127 IPC_STRUCT_TRAITS_MEMBER(x) | |
| 128 IPC_STRUCT_TRAITS_MEMBER(y) | |
| 129 IPC_STRUCT_TRAITS_MEMBER(width) | |
| 130 IPC_STRUCT_TRAITS_MEMBER(height) | |
| 131 IPC_STRUCT_TRAITS_END() | |
| 132 | |
| 133 IPC_STRUCT_TRAITS_BEGIN(WebKit::WebFloatPoint) | 121 IPC_STRUCT_TRAITS_BEGIN(WebKit::WebFloatPoint) |
| 134 IPC_STRUCT_TRAITS_MEMBER(x) | 122 IPC_STRUCT_TRAITS_MEMBER(x) |
| 135 IPC_STRUCT_TRAITS_MEMBER(y) | 123 IPC_STRUCT_TRAITS_MEMBER(y) |
| 136 IPC_STRUCT_TRAITS_END() | 124 IPC_STRUCT_TRAITS_END() |
| 137 | 125 |
| 138 IPC_STRUCT_TRAITS_BEGIN(WebKit::WebFloatRect) | 126 IPC_STRUCT_TRAITS_BEGIN(WebKit::WebFloatRect) |
| 139 IPC_STRUCT_TRAITS_MEMBER(x) | 127 IPC_STRUCT_TRAITS_MEMBER(x) |
| 140 IPC_STRUCT_TRAITS_MEMBER(y) | 128 IPC_STRUCT_TRAITS_MEMBER(y) |
| 141 IPC_STRUCT_TRAITS_MEMBER(width) | 129 IPC_STRUCT_TRAITS_MEMBER(width) |
| 142 IPC_STRUCT_TRAITS_MEMBER(height) | 130 IPC_STRUCT_TRAITS_MEMBER(height) |
| (...skipping 2329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2472 | 2460 |
| 2473 // Perform a seek. | 2461 // Perform a seek. |
| 2474 IPC_MESSAGE_ROUTED2(ViewHostMsg_MediaPlayerSeek, | 2462 IPC_MESSAGE_ROUTED2(ViewHostMsg_MediaPlayerSeek, |
| 2475 int /* player_id */, | 2463 int /* player_id */, |
| 2476 base::TimeDelta /* time */) | 2464 base::TimeDelta /* time */) |
| 2477 | 2465 |
| 2478 // Start the player for playback. | 2466 // Start the player for playback. |
| 2479 IPC_MESSAGE_ROUTED1(ViewHostMsg_MediaPlayerStart, | 2467 IPC_MESSAGE_ROUTED1(ViewHostMsg_MediaPlayerStart, |
| 2480 int /* player_id */) | 2468 int /* player_id */) |
| 2481 #endif | 2469 #endif |
| OLD | NEW |