OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 interacting with frames. | 5 // IPC messages for interacting with frames. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 IPC_STRUCT_TRAITS_MEMBER(is_pepper_menu) | 156 IPC_STRUCT_TRAITS_MEMBER(is_pepper_menu) |
157 IPC_STRUCT_TRAITS_MEMBER(request_id) | 157 IPC_STRUCT_TRAITS_MEMBER(request_id) |
158 IPC_STRUCT_TRAITS_MEMBER(render_widget_id) | 158 IPC_STRUCT_TRAITS_MEMBER(render_widget_id) |
159 IPC_STRUCT_TRAITS_MEMBER(link_followed) | 159 IPC_STRUCT_TRAITS_MEMBER(link_followed) |
160 IPC_STRUCT_TRAITS_END() | 160 IPC_STRUCT_TRAITS_END() |
161 | 161 |
162 IPC_STRUCT_TRAITS_BEGIN(blink::WebFrameOwnerProperties) | 162 IPC_STRUCT_TRAITS_BEGIN(blink::WebFrameOwnerProperties) |
163 IPC_STRUCT_TRAITS_MEMBER(scrollingMode) | 163 IPC_STRUCT_TRAITS_MEMBER(scrollingMode) |
164 IPC_STRUCT_TRAITS_MEMBER(marginWidth) | 164 IPC_STRUCT_TRAITS_MEMBER(marginWidth) |
165 IPC_STRUCT_TRAITS_MEMBER(marginHeight) | 165 IPC_STRUCT_TRAITS_MEMBER(marginHeight) |
| 166 IPC_STRUCT_TRAITS_MEMBER(allowFullscreen) |
166 IPC_STRUCT_TRAITS_END() | 167 IPC_STRUCT_TRAITS_END() |
167 | 168 |
168 IPC_STRUCT_TRAITS_BEGIN(content::TransitionElement) | 169 IPC_STRUCT_TRAITS_BEGIN(content::TransitionElement) |
169 IPC_STRUCT_TRAITS_MEMBER(id) | 170 IPC_STRUCT_TRAITS_MEMBER(id) |
170 IPC_STRUCT_TRAITS_MEMBER(rect) | 171 IPC_STRUCT_TRAITS_MEMBER(rect) |
171 IPC_STRUCT_TRAITS_END() | 172 IPC_STRUCT_TRAITS_END() |
172 | 173 |
173 IPC_STRUCT_TRAITS_BEGIN(content::PageImportanceSignals) | 174 IPC_STRUCT_TRAITS_BEGIN(content::PageImportanceSignals) |
174 IPC_STRUCT_TRAITS_MEMBER(had_form_interaction) | 175 IPC_STRUCT_TRAITS_MEMBER(had_form_interaction) |
175 IPC_STRUCT_TRAITS_END() | 176 IPC_STRUCT_TRAITS_END() |
(...skipping 1297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1473 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, | 1474 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, |
1474 int /* version */, | 1475 int /* version */, |
1475 std::vector<gfx::RectF> /* rects */, | 1476 std::vector<gfx::RectF> /* rects */, |
1476 gfx::RectF /* active_rect */) | 1477 gfx::RectF /* active_rect */) |
1477 #endif | 1478 #endif |
1478 | 1479 |
1479 // Adding a new message? Stick to the sort order above: first platform | 1480 // Adding a new message? Stick to the sort order above: first platform |
1480 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1481 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
1481 // platform independent FrameHostMsg, then ifdefs for platform specific | 1482 // platform independent FrameHostMsg, then ifdefs for platform specific |
1482 // FrameHostMsg. | 1483 // FrameHostMsg. |
OLD | NEW |