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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 IPC_STRUCT_TRAITS_MEMBER(is_pepper_menu) | 154 IPC_STRUCT_TRAITS_MEMBER(is_pepper_menu) |
155 IPC_STRUCT_TRAITS_MEMBER(request_id) | 155 IPC_STRUCT_TRAITS_MEMBER(request_id) |
156 IPC_STRUCT_TRAITS_MEMBER(render_widget_id) | 156 IPC_STRUCT_TRAITS_MEMBER(render_widget_id) |
157 IPC_STRUCT_TRAITS_MEMBER(link_followed) | 157 IPC_STRUCT_TRAITS_MEMBER(link_followed) |
158 IPC_STRUCT_TRAITS_END() | 158 IPC_STRUCT_TRAITS_END() |
159 | 159 |
160 IPC_STRUCT_TRAITS_BEGIN(blink::WebFrameOwnerProperties) | 160 IPC_STRUCT_TRAITS_BEGIN(blink::WebFrameOwnerProperties) |
161 IPC_STRUCT_TRAITS_MEMBER(scrollingMode) | 161 IPC_STRUCT_TRAITS_MEMBER(scrollingMode) |
162 IPC_STRUCT_TRAITS_MEMBER(marginWidth) | 162 IPC_STRUCT_TRAITS_MEMBER(marginWidth) |
163 IPC_STRUCT_TRAITS_MEMBER(marginHeight) | 163 IPC_STRUCT_TRAITS_MEMBER(marginHeight) |
| 164 IPC_STRUCT_TRAITS_MEMBER(allowFullscreen) |
164 IPC_STRUCT_TRAITS_END() | 165 IPC_STRUCT_TRAITS_END() |
165 | 166 |
166 IPC_STRUCT_TRAITS_BEGIN(content::TransitionElement) | 167 IPC_STRUCT_TRAITS_BEGIN(content::TransitionElement) |
167 IPC_STRUCT_TRAITS_MEMBER(id) | 168 IPC_STRUCT_TRAITS_MEMBER(id) |
168 IPC_STRUCT_TRAITS_MEMBER(rect) | 169 IPC_STRUCT_TRAITS_MEMBER(rect) |
169 IPC_STRUCT_TRAITS_END() | 170 IPC_STRUCT_TRAITS_END() |
170 | 171 |
171 IPC_STRUCT_TRAITS_BEGIN(content::PageImportanceSignals) | 172 IPC_STRUCT_TRAITS_BEGIN(content::PageImportanceSignals) |
172 IPC_STRUCT_TRAITS_MEMBER(had_form_interaction) | 173 IPC_STRUCT_TRAITS_MEMBER(had_form_interaction) |
173 IPC_STRUCT_TRAITS_END() | 174 IPC_STRUCT_TRAITS_END() |
(...skipping 1270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1444 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, | 1445 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, |
1445 int /* version */, | 1446 int /* version */, |
1446 std::vector<gfx::RectF> /* rects */, | 1447 std::vector<gfx::RectF> /* rects */, |
1447 gfx::RectF /* active_rect */) | 1448 gfx::RectF /* active_rect */) |
1448 #endif | 1449 #endif |
1449 | 1450 |
1450 // Adding a new message? Stick to the sort order above: first platform | 1451 // Adding a new message? Stick to the sort order above: first platform |
1451 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1452 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
1452 // platform independent FrameHostMsg, then ifdefs for platform specific | 1453 // platform independent FrameHostMsg, then ifdefs for platform specific |
1453 // FrameHostMsg. | 1454 // FrameHostMsg. |
OLD | NEW |