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

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: Rebasing... 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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
867 IPC_MESSAGE_ROUTED4(FrameHostMsg_AddMessageToConsole, 877 IPC_MESSAGE_ROUTED4(FrameHostMsg_AddMessageToConsole,
868 int32_t, /* log level */ 878 int32_t, /* log level */
869 base::string16, /* msg */ 879 base::string16, /* msg */
870 int32_t, /* line number */ 880 int32_t, /* line number */
871 base::string16 /* source id */) 881 base::string16 /* source id */)
872 882
873 // Sent by the renderer when a child frame is created in the renderer. 883 // Sent by the renderer when a child frame is created in the renderer.
874 // 884 //
875 // Each of these messages will have a corresponding FrameHostMsg_Detach message 885 // Each of these messages will have a corresponding FrameHostMsg_Detach message
876 // sent when the frame is detached from the DOM. 886 // sent when the frame is detached from the DOM.
877 IPC_SYNC_MESSAGE_CONTROL5_1( 887 IPC_SYNC_MESSAGE_CONTROL1_1(FrameHostMsg_CreateChildFrame,
878 FrameHostMsg_CreateChildFrame, 888 FrameHostMsg_CreateChildFrame_Params,
879 int32_t /* parent_routing_id */, 889 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 890
886 // Sent by the renderer to the parent RenderFrameHost when a child frame is 891 // Sent by the renderer to the parent RenderFrameHost when a child frame is
887 // detached from the DOM. 892 // detached from the DOM.
888 IPC_MESSAGE_ROUTED0(FrameHostMsg_Detach) 893 IPC_MESSAGE_ROUTED0(FrameHostMsg_Detach)
889 894
890 // Indicates the renderer process is gone. This actually is sent by the 895 // Indicates the renderer process is gone. This actually is sent by the
891 // browser process to itself, but keeps the interface cleaner. 896 // browser process to itself, but keeps the interface cleaner.
892 IPC_MESSAGE_ROUTED2(FrameHostMsg_RenderProcessGone, 897 IPC_MESSAGE_ROUTED2(FrameHostMsg_RenderProcessGone,
893 int, /* this really is base::TerminationStatus */ 898 int, /* this really is base::TerminationStatus */
894 int /* exit_code */) 899 int /* exit_code */)
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
929 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidStartLoading, 934 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidStartLoading,
930 bool /* to_different_document */) 935 bool /* to_different_document */)
931 936
932 // Sent when the renderer is done loading a page. 937 // Sent when the renderer is done loading a page.
933 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidStopLoading) 938 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidStopLoading)
934 939
935 // Notifies the browser that this frame has new session history information. 940 // Notifies the browser that this frame has new session history information.
936 IPC_MESSAGE_ROUTED1(FrameHostMsg_UpdateState, content::PageState /* state */) 941 IPC_MESSAGE_ROUTED1(FrameHostMsg_UpdateState, content::PageState /* state */)
937 942
938 // Sent when the frame changes its window.name. 943 // Sent when the frame changes its window.name.
939 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidChangeName, std::string /* name */) 944 IPC_MESSAGE_ROUTED2(FrameHostMsg_DidChangeName,
945 std::string /* name */,
946 std::string /* unique_name */)
940 947
941 // Sent when the frame starts enforcing strict mixed content 948 // Sent when the frame starts enforcing strict mixed content
942 // checking. Sending this information in DidCommitProvisionalLoad isn't 949 // checking. Sending this information in DidCommitProvisionalLoad isn't
943 // sufficient; this message is needed because, for example, a document 950 // sufficient; this message is needed because, for example, a document
944 // can dynamically insert a <meta> tag that causes strict mixed content 951 // can dynamically insert a <meta> tag that causes strict mixed content
945 // checking to be enforced. 952 // checking to be enforced.
946 IPC_MESSAGE_ROUTED0(FrameHostMsg_EnforceStrictMixedContentChecking) 953 IPC_MESSAGE_ROUTED0(FrameHostMsg_EnforceStrictMixedContentChecking)
947 954
948 // Sent when the renderer changed the progress of a load. 955 // Sent when the renderer changed the progress of a load.
949 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidChangeLoadProgress, 956 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidChangeLoadProgress,
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after
1452 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, 1459 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply,
1453 int /* version */, 1460 int /* version */,
1454 std::vector<gfx::RectF> /* rects */, 1461 std::vector<gfx::RectF> /* rects */,
1455 gfx::RectF /* active_rect */) 1462 gfx::RectF /* active_rect */)
1456 #endif 1463 #endif
1457 1464
1458 // Adding a new message? Stick to the sort order above: first platform 1465 // Adding a new message? Stick to the sort order above: first platform
1459 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1466 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1460 // platform independent FrameHostMsg, then ifdefs for platform specific 1467 // platform independent FrameHostMsg, then ifdefs for platform specific
1461 // FrameHostMsg. 1468 // FrameHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698