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

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

Issue 1550723003: Adapt MixedContentChecker for remote frames (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 11 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
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 345 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 IPC_STRUCT_TRAITS_MEMBER(service_worker_provider_id) 356 IPC_STRUCT_TRAITS_MEMBER(service_worker_provider_id)
357 #if defined(OS_ANDROID) 357 #if defined(OS_ANDROID)
358 IPC_STRUCT_TRAITS_MEMBER(data_url_as_string) 358 IPC_STRUCT_TRAITS_MEMBER(data_url_as_string)
359 #endif 359 #endif
360 IPC_STRUCT_TRAITS_END() 360 IPC_STRUCT_TRAITS_END()
361 361
362 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState) 362 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState)
363 IPC_STRUCT_TRAITS_MEMBER(origin) 363 IPC_STRUCT_TRAITS_MEMBER(origin)
364 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags) 364 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags)
365 IPC_STRUCT_TRAITS_MEMBER(name) 365 IPC_STRUCT_TRAITS_MEMBER(name)
366 IPC_STRUCT_TRAITS_MEMBER(scope)
367 IPC_STRUCT_TRAITS_MEMBER(should_enforce_strict_mixed_content_checking)
366 IPC_STRUCT_TRAITS_END() 368 IPC_STRUCT_TRAITS_END()
367 369
368 IPC_STRUCT_BEGIN(FrameMsg_NewFrame_WidgetParams) 370 IPC_STRUCT_BEGIN(FrameMsg_NewFrame_WidgetParams)
369 // Gives the routing ID for the RenderWidget that will be attached to the 371 // Gives the routing ID for the RenderWidget that will be attached to the
370 // new RenderFrame. If the RenderFrame does not need a RenderWidget, this 372 // new RenderFrame. If the RenderFrame does not need a RenderWidget, this
371 // is MSG_ROUTING_NONE and the other parameters are not read. 373 // is MSG_ROUTING_NONE and the other parameters are not read.
372 IPC_STRUCT_MEMBER(int, routing_id) 374 IPC_STRUCT_MEMBER(int, routing_id)
373 375
374 // Tells the new RenderWidget whether it is initially hidden. 376 // Tells the new RenderWidget whether it is initially hidden.
375 IPC_STRUCT_MEMBER(bool, hidden) 377 IPC_STRUCT_MEMBER(bool, hidden)
(...skipping 991 matching lines...) Expand 10 before | Expand all | Expand 10 after
1367 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, 1369 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup,
1368 FrameHostMsg_ShowPopup_Params) 1370 FrameHostMsg_ShowPopup_Params)
1369 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) 1371 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup)
1370 1372
1371 #endif 1373 #endif
1372 1374
1373 // Adding a new message? Stick to the sort order above: first platform 1375 // Adding a new message? Stick to the sort order above: first platform
1374 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1376 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1375 // platform independent FrameHostMsg, then ifdefs for platform specific 1377 // platform independent FrameHostMsg, then ifdefs for platform specific
1376 // FrameHostMsg. 1378 // FrameHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698