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

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

Issue 1635873003: Replicating WebFrame::uniqueName across renderers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dump-render-tree3
Patch Set: Removed unnecessary crbug comment. Created 4 years, 10 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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 IPC_STRUCT_TRAITS_MEMBER(service_worker_provider_id) 368 IPC_STRUCT_TRAITS_MEMBER(service_worker_provider_id)
369 #if defined(OS_ANDROID) 369 #if defined(OS_ANDROID)
370 IPC_STRUCT_TRAITS_MEMBER(data_url_as_string) 370 IPC_STRUCT_TRAITS_MEMBER(data_url_as_string)
371 #endif 371 #endif
372 IPC_STRUCT_TRAITS_END() 372 IPC_STRUCT_TRAITS_END()
373 373
374 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState) 374 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState)
375 IPC_STRUCT_TRAITS_MEMBER(origin) 375 IPC_STRUCT_TRAITS_MEMBER(origin)
376 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags) 376 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags)
377 IPC_STRUCT_TRAITS_MEMBER(name) 377 IPC_STRUCT_TRAITS_MEMBER(name)
378 IPC_STRUCT_TRAITS_MEMBER(unique_name)
378 IPC_STRUCT_TRAITS_MEMBER(scope) 379 IPC_STRUCT_TRAITS_MEMBER(scope)
379 IPC_STRUCT_TRAITS_MEMBER(should_enforce_strict_mixed_content_checking) 380 IPC_STRUCT_TRAITS_MEMBER(should_enforce_strict_mixed_content_checking)
380 IPC_STRUCT_TRAITS_END() 381 IPC_STRUCT_TRAITS_END()
381 382
382 IPC_STRUCT_BEGIN(FrameMsg_NewFrame_WidgetParams) 383 IPC_STRUCT_BEGIN(FrameMsg_NewFrame_WidgetParams)
383 // Gives the routing ID for the RenderWidget that will be attached to the 384 // Gives the routing ID for the RenderWidget that will be attached to the
384 // new RenderFrame. If the RenderFrame does not need a RenderWidget, this 385 // new RenderFrame. If the RenderFrame does not need a RenderWidget, this
385 // is MSG_ROUTING_NONE and the other parameters are not read. 386 // is MSG_ROUTING_NONE and the other parameters are not read.
386 IPC_STRUCT_MEMBER(int, routing_id) 387 IPC_STRUCT_MEMBER(int, routing_id)
387 388
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
508 // to perform hittesting on the browser process. 509 // to perform hittesting on the browser process.
509 IPC_STRUCT_BEGIN(FrameHostMsg_HittestData_Params) 510 IPC_STRUCT_BEGIN(FrameHostMsg_HittestData_Params)
510 // |surface_id| represents the surface used by this remote frame. 511 // |surface_id| represents the surface used by this remote frame.
511 IPC_STRUCT_MEMBER(cc::SurfaceId, surface_id) 512 IPC_STRUCT_MEMBER(cc::SurfaceId, surface_id)
512 513
513 // If |ignored_for_hittest| then this surface should be ignored during 514 // If |ignored_for_hittest| then this surface should be ignored during
514 // hittesting. 515 // hittesting.
515 IPC_STRUCT_MEMBER(bool, ignored_for_hittest) 516 IPC_STRUCT_MEMBER(bool, ignored_for_hittest)
516 IPC_STRUCT_END() 517 IPC_STRUCT_END()
517 518
519 IPC_STRUCT_BEGIN(FrameHostMsg_CreateChildFrame_Params)
520 IPC_STRUCT_MEMBER(int32_t, parent_routing_id)
521 IPC_STRUCT_MEMBER(blink::WebTreeScopeType, scope)
522 IPC_STRUCT_MEMBER(std::string, frame_name)
523 IPC_STRUCT_MEMBER(std::string, frame_unique_name)
524 IPC_STRUCT_MEMBER(blink::WebSandboxFlags, sandbox_flags)
525 IPC_STRUCT_MEMBER(blink::WebFrameOwnerProperties, frame_owner_properties)
526 IPC_STRUCT_END()
527
518 #if defined(OS_MACOSX) || defined(OS_ANDROID) 528 #if defined(OS_MACOSX) || defined(OS_ANDROID)
519 // This message is used for supporting popup menus on Mac OS X and Android using 529 // This message is used for supporting popup menus on Mac OS X and Android using
520 // native controls. See the FrameHostMsg_ShowPopup message. 530 // native controls. See the FrameHostMsg_ShowPopup message.
521 IPC_STRUCT_BEGIN(FrameHostMsg_ShowPopup_Params) 531 IPC_STRUCT_BEGIN(FrameHostMsg_ShowPopup_Params)
522 // Position on the screen. 532 // Position on the screen.
523 IPC_STRUCT_MEMBER(gfx::Rect, bounds) 533 IPC_STRUCT_MEMBER(gfx::Rect, bounds)
524 534
525 // The height of each item in the menu. 535 // The height of each item in the menu.
526 IPC_STRUCT_MEMBER(int, item_height) 536 IPC_STRUCT_MEMBER(int, item_height)
527 537
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
739 AccessibilityMode) 749 AccessibilityMode)
740 750
741 // Dispatch a load event in the iframe element containing this frame. 751 // Dispatch a load event in the iframe element containing this frame.
742 IPC_MESSAGE_ROUTED0(FrameMsg_DispatchLoad) 752 IPC_MESSAGE_ROUTED0(FrameMsg_DispatchLoad)
743 753
744 // Notifies the frame that its parent has changed the frame's sandbox flags. 754 // Notifies the frame that its parent has changed the frame's sandbox flags.
745 IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateSandboxFlags, blink::WebSandboxFlags) 755 IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateSandboxFlags, blink::WebSandboxFlags)
746 756
747 // Update a proxy's window.name property. Used when the frame's name is 757 // Update a proxy's window.name property. Used when the frame's name is
748 // changed in another process. 758 // changed in another process.
749 IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateName, std::string /* name */) 759 IPC_MESSAGE_ROUTED2(FrameMsg_DidUpdateName,
760 std::string /* name */,
761 std::string /* unique_name */)
750 762
751 // Update a proxy's replicated enforcement of strict mixed content 763 // Update a proxy's replicated enforcement of strict mixed content
752 // checking. Used when the frame's mixed content setting is changed in 764 // checking. Used when the frame's mixed content setting is changed in
753 // another process. 765 // another process.
754 IPC_MESSAGE_ROUTED1(FrameMsg_EnforceStrictMixedContentChecking, 766 IPC_MESSAGE_ROUTED1(FrameMsg_EnforceStrictMixedContentChecking,
755 bool /* should enforce */) 767 bool /* should enforce */)
756 768
757 // Update a proxy's replicated origin. Used when the frame is navigated to a 769 // Update a proxy's replicated origin. Used when the frame is navigated to a
758 // new origin. 770 // new origin.
759 IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateOrigin, url::Origin /* origin */) 771 IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateOrigin, url::Origin /* origin */)
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
867 IPC_MESSAGE_ROUTED4(FrameHostMsg_AddMessageToConsole, 879 IPC_MESSAGE_ROUTED4(FrameHostMsg_AddMessageToConsole,
868 int32_t, /* log level */ 880 int32_t, /* log level */
869 base::string16, /* msg */ 881 base::string16, /* msg */
870 int32_t, /* line number */ 882 int32_t, /* line number */
871 base::string16 /* source id */) 883 base::string16 /* source id */)
872 884
873 // Sent by the renderer when a child frame is created in the renderer. 885 // Sent by the renderer when a child frame is created in the renderer.
874 // 886 //
875 // Each of these messages will have a corresponding FrameHostMsg_Detach message 887 // Each of these messages will have a corresponding FrameHostMsg_Detach message
876 // sent when the frame is detached from the DOM. 888 // sent when the frame is detached from the DOM.
877 IPC_SYNC_MESSAGE_CONTROL5_1( 889 IPC_SYNC_MESSAGE_CONTROL1_1(FrameHostMsg_CreateChildFrame,
878 FrameHostMsg_CreateChildFrame, 890 FrameHostMsg_CreateChildFrame_Params,
879 int32_t /* parent_routing_id */, 891 int32_t /* new_routing_id */)
880 blink::WebTreeScopeType /* scope */,
881 std::string /* frame_name */,
882 blink::WebSandboxFlags /* sandbox flags */,
883 blink::WebFrameOwnerProperties /* frame_owner_properties */,
884 int32_t /* new_routing_id */)
885 892
886 // Sent by the renderer to the parent RenderFrameHost when a child frame is 893 // Sent by the renderer to the parent RenderFrameHost when a child frame is
887 // detached from the DOM. 894 // detached from the DOM.
888 IPC_MESSAGE_ROUTED0(FrameHostMsg_Detach) 895 IPC_MESSAGE_ROUTED0(FrameHostMsg_Detach)
889 896
890 // Indicates the renderer process is gone. This actually is sent by the 897 // Indicates the renderer process is gone. This actually is sent by the
891 // browser process to itself, but keeps the interface cleaner. 898 // browser process to itself, but keeps the interface cleaner.
892 IPC_MESSAGE_ROUTED2(FrameHostMsg_RenderProcessGone, 899 IPC_MESSAGE_ROUTED2(FrameHostMsg_RenderProcessGone,
893 int, /* this really is base::TerminationStatus */ 900 int, /* this really is base::TerminationStatus */
894 int /* exit_code */) 901 int /* exit_code */)
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
929 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidStartLoading, 936 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidStartLoading,
930 bool /* to_different_document */) 937 bool /* to_different_document */)
931 938
932 // Sent when the renderer is done loading a page. 939 // Sent when the renderer is done loading a page.
933 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidStopLoading) 940 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidStopLoading)
934 941
935 // Notifies the browser that this frame has new session history information. 942 // Notifies the browser that this frame has new session history information.
936 IPC_MESSAGE_ROUTED1(FrameHostMsg_UpdateState, content::PageState /* state */) 943 IPC_MESSAGE_ROUTED1(FrameHostMsg_UpdateState, content::PageState /* state */)
937 944
938 // Sent when the frame changes its window.name. 945 // Sent when the frame changes its window.name.
939 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidChangeName, std::string /* name */) 946 IPC_MESSAGE_ROUTED2(FrameHostMsg_DidChangeName,
947 std::string /* name */,
948 std::string /* unique_name */)
940 949
941 // Sent when the frame starts enforcing strict mixed content 950 // Sent when the frame starts enforcing strict mixed content
942 // checking. Sending this information in DidCommitProvisionalLoad isn't 951 // checking. Sending this information in DidCommitProvisionalLoad isn't
943 // sufficient; this message is needed because, for example, a document 952 // sufficient; this message is needed because, for example, a document
944 // can dynamically insert a <meta> tag that causes strict mixed content 953 // can dynamically insert a <meta> tag that causes strict mixed content
945 // checking to be enforced. 954 // checking to be enforced.
946 IPC_MESSAGE_ROUTED0(FrameHostMsg_EnforceStrictMixedContentChecking) 955 IPC_MESSAGE_ROUTED0(FrameHostMsg_EnforceStrictMixedContentChecking)
947 956
948 // Sent when the renderer changed the progress of a load. 957 // Sent when the renderer changed the progress of a load.
949 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidChangeLoadProgress, 958 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidChangeLoadProgress,
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
1442 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, 1451 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply,
1443 int /* version */, 1452 int /* version */,
1444 std::vector<gfx::RectF> /* rects */, 1453 std::vector<gfx::RectF> /* rects */,
1445 gfx::RectF /* active_rect */) 1454 gfx::RectF /* active_rect */)
1446 #endif 1455 #endif
1447 1456
1448 // Adding a new message? Stick to the sort order above: first platform 1457 // Adding a new message? Stick to the sort order above: first platform
1449 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1458 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1450 // platform independent FrameHostMsg, then ifdefs for platform specific 1459 // platform independent FrameHostMsg, then ifdefs for platform specific
1451 // FrameHostMsg. 1460 // FrameHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698