Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(970)

Side by Side Diff: content/common/frame_messages.h

Issue 1938753002: OOPIF: Replicate allowFullscreen flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/browser/site_per_process_browsertest.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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.
OLDNEW
« no previous file with comments | « content/browser/site_per_process_browsertest.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698