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