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

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

Issue 6319001: Support window.opener after a process swap. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update comments. Created 9 years, 8 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 page rendering. 5 // IPC messages for page rendering.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "base/process.h" 8 #include "base/process.h"
9 #include "base/shared_memory.h" 9 #include "base/shared_memory.h"
10 #include "content/common/common_param_traits.h" 10 #include "content/common/common_param_traits.h"
(...skipping 599 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 // ViewHostMsg_UpdateRect_Flags::IS_REPAINT_ACK 610 // ViewHostMsg_UpdateRect_Flags::IS_REPAINT_ACK
611 // Indicates that this is a response to a ViewMsg_Repaint message. 611 // Indicates that this is a response to a ViewMsg_Repaint message.
612 // 612 //
613 // If flags is zero, then this message corresponds to an unsoliticed paint 613 // If flags is zero, then this message corresponds to an unsoliticed paint
614 // request by the render view. Any of the above bits may be set in flags, 614 // request by the render view. Any of the above bits may be set in flags,
615 // which would indicate that this paint message is an ACK for multiple 615 // which would indicate that this paint message is an ACK for multiple
616 // request messages. 616 // request messages.
617 IPC_STRUCT_MEMBER(int, flags) 617 IPC_STRUCT_MEMBER(int, flags)
618 IPC_STRUCT_END() 618 IPC_STRUCT_END()
619 619
620 IPC_STRUCT_BEGIN(ViewMsg_ClosePage_Params) 620 IPC_STRUCT_BEGIN(ViewMsg_SwapOut_Params)
621 // The identifier of the RenderProcessHost for the currently closing view. 621 // The identifier of the RenderProcessHost for the currently closing view.
622 // 622 //
623 // These first two parameters are technically redundant since they are 623 // These first two parameters are technically redundant since they are
624 // needed only when processing the ACK message, and the processor 624 // needed only when processing the ACK message, and the processor
625 // theoretically knows both the process and route ID. However, this is 625 // theoretically knows both the process and route ID. However, this is
626 // difficult to figure out with our current implementation, so this 626 // difficult to figure out with our current implementation, so this
627 // information is duplicate here. 627 // information is duplicated here.
628 IPC_STRUCT_MEMBER(int, closing_process_id) 628 IPC_STRUCT_MEMBER(int, closing_process_id)
629 629
630 // The route identifier for the currently closing RenderView. 630 // The route identifier for the currently closing RenderView.
631 IPC_STRUCT_MEMBER(int, closing_route_id) 631 IPC_STRUCT_MEMBER(int, closing_route_id)
632 632
633 // True when this close is for the first (closing) tab of a cross-site
634 // transition where we switch processes. False indicates the close is for the
635 // entire tab.
636 //
637 // When true, the new_* variables below must be filled in. Otherwise they must
638 // both be -1.
639 IPC_STRUCT_MEMBER(bool, for_cross_site_transition)
640
641 // The identifier of the RenderProcessHost for the new view attempting to 633 // The identifier of the RenderProcessHost for the new view attempting to
642 // replace the closing one above. This must be valid when 634 // replace the closing one above.
643 // for_cross_site_transition is set, and must be -1 otherwise.
644 IPC_STRUCT_MEMBER(int, new_render_process_host_id) 635 IPC_STRUCT_MEMBER(int, new_render_process_host_id)
645 636
646 // The identifier of the *request* the new view made that is causing the 637 // The identifier of the *request* the new view made that is causing the
647 // cross-site transition. This is *not* a route_id, but the request that we 638 // cross-site transition. This is *not* a route_id, but the request that we
648 // will resume once the ACK from the closing view has been received. This 639 // will resume once the ACK from the closing view has been received.
649 // must be valid when for_cross_site_transition is set, and must be -1
650 // otherwise.
651 IPC_STRUCT_MEMBER(int, new_request_id) 640 IPC_STRUCT_MEMBER(int, new_request_id)
652 IPC_STRUCT_END() 641 IPC_STRUCT_END()
653 642
654 IPC_STRUCT_BEGIN(ViewMsg_Navigate_Params) 643 IPC_STRUCT_BEGIN(ViewMsg_Navigate_Params)
655 // The page_id for this navigation, or -1 if it is a new navigation. Back, 644 // The page_id for this navigation, or -1 if it is a new navigation. Back,
656 // Forward, and Reload navigations should have a valid page_id. If the load 645 // Forward, and Reload navigations should have a valid page_id. If the load
657 // succeeds, then this page_id will be reflected in the resultant 646 // succeeds, then this page_id will be reflected in the resultant
658 // ViewHostMsg_FrameNavigate message. 647 // ViewHostMsg_FrameNavigate message.
659 IPC_STRUCT_MEMBER(int32, page_id) 648 IPC_STRUCT_MEMBER(int32, page_id)
660 649
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
1032 // When a renderer sends a ViewHostMsg_Focus to the browser process, 1021 // When a renderer sends a ViewHostMsg_Focus to the browser process,
1033 // the browser has the option of sending a ViewMsg_CantFocus back to 1022 // the browser has the option of sending a ViewMsg_CantFocus back to
1034 // the renderer. 1023 // the renderer.
1035 IPC_MESSAGE_ROUTED0(ViewMsg_CantFocus) 1024 IPC_MESSAGE_ROUTED0(ViewMsg_CantFocus)
1036 1025
1037 // Instructs the renderer to invoke the frame's shouldClose method, which 1026 // Instructs the renderer to invoke the frame's shouldClose method, which
1038 // runs the onbeforeunload event handler. Expects the result to be returned 1027 // runs the onbeforeunload event handler. Expects the result to be returned
1039 // via ViewHostMsg_ShouldClose. 1028 // via ViewHostMsg_ShouldClose.
1040 IPC_MESSAGE_ROUTED0(ViewMsg_ShouldClose) 1029 IPC_MESSAGE_ROUTED0(ViewMsg_ShouldClose)
1041 1030
1031 // Instructs the renderer to swap out for a cross-site transition, including
1032 // running the unload event handler. See the struct above for more details.
1033 //
1034 // Expects a SwapOut_ACK message when finished, where the parameters are
1035 // echoed back.
1036 IPC_MESSAGE_ROUTED1(ViewMsg_SwapOut,
1037 ViewMsg_SwapOut_Params)
1038
1042 // Instructs the renderer to close the current page, including running the 1039 // Instructs the renderer to close the current page, including running the
1043 // onunload event handler. See the struct in render_messages.h for more. 1040 // onunload event handler.
1044 // 1041 //
1045 // Expects a ClosePage_ACK message when finished, where the parameters are 1042 // Expects a ClosePage_ACK message when finished.
1046 // echoed back. 1043 IPC_MESSAGE_ROUTED0(ViewMsg_ClosePage)
1047 IPC_MESSAGE_ROUTED1(ViewMsg_ClosePage,
1048 ViewMsg_ClosePage_Params)
1049 1044
1050 // Notifies the renderer about ui theme changes 1045 // Notifies the renderer about ui theme changes
1051 IPC_MESSAGE_ROUTED0(ViewMsg_ThemeChanged) 1046 IPC_MESSAGE_ROUTED0(ViewMsg_ThemeChanged)
1052 1047
1053 // Notifies the renderer that a paint is to be generated for the rectangle 1048 // Notifies the renderer that a paint is to be generated for the rectangle
1054 // passed in. 1049 // passed in.
1055 IPC_MESSAGE_ROUTED1(ViewMsg_Repaint, 1050 IPC_MESSAGE_ROUTED1(ViewMsg_Repaint,
1056 gfx::Size /* The view size to be repainted */) 1051 gfx::Size /* The view size to be repainted */)
1057 1052
1058 // Notification that a move or resize renderer's containing window has 1053 // Notification that a move or resize renderer's containing window has
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
1253 int /* active_match_ordinal */, 1248 int /* active_match_ordinal */,
1254 bool /* final_update */) 1249 bool /* final_update */)
1255 1250
1256 // Provides the result from running OnMsgShouldClose. |proceed| matches the 1251 // Provides the result from running OnMsgShouldClose. |proceed| matches the
1257 // return value of the the frame's shouldClose method (which includes the 1252 // return value of the the frame's shouldClose method (which includes the
1258 // onbeforeunload handler): true if the user decided to proceed with leaving 1253 // onbeforeunload handler): true if the user decided to proceed with leaving
1259 // the page. 1254 // the page.
1260 IPC_MESSAGE_ROUTED1(ViewHostMsg_ShouldClose_ACK, 1255 IPC_MESSAGE_ROUTED1(ViewHostMsg_ShouldClose_ACK,
1261 bool /* proceed */) 1256 bool /* proceed */)
1262 1257
1258 // Indicates that the current renderer has swapped out, after a SwapOut
1259 // message. The parameters are just echoed from the SwapOut request.
1260 IPC_MESSAGE_ROUTED1(ViewHostMsg_SwapOut_ACK,
1261 ViewMsg_SwapOut_Params)
1262
1263 // Indicates that the current page has been closed, after a ClosePage 1263 // Indicates that the current page has been closed, after a ClosePage
1264 // message. The parameters are just echoed from the ClosePage request. 1264 // message.
1265 IPC_MESSAGE_ROUTED1(ViewHostMsg_ClosePage_ACK, 1265 IPC_MESSAGE_ROUTED0(ViewHostMsg_ClosePage_ACK)
1266 ViewMsg_ClosePage_Params)
1267 1266
1268 // Notifies the browser that we have session history information. 1267 // Notifies the browser that we have session history information.
1269 // page_id: unique ID that allows us to distinguish between history entries. 1268 // page_id: unique ID that allows us to distinguish between history entries.
1270 IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateState, 1269 IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateState,
1271 int32 /* page_id */, 1270 int32 /* page_id */,
1272 std::string /* state */) 1271 std::string /* state */)
1273 1272
1274 // Notifies the browser that a document has been loaded in a frame. 1273 // Notifies the browser that a document has been loaded in a frame.
1275 IPC_MESSAGE_ROUTED1(ViewHostMsg_DocumentLoadedInFrame, 1274 IPC_MESSAGE_ROUTED1(ViewHostMsg_DocumentLoadedInFrame,
1276 int64 /* frame_id */) 1275 int64 /* frame_id */)
(...skipping 591 matching lines...) Expand 10 before | Expand all | Expand 10 after
1868 // enable or disable spdy. Used for debugging/testing/benchmarking. 1867 // enable or disable spdy. Used for debugging/testing/benchmarking.
1869 IPC_MESSAGE_CONTROL1(ViewHostMsg_EnableSpdy, 1868 IPC_MESSAGE_CONTROL1(ViewHostMsg_EnableSpdy,
1870 bool /* enable */) 1869 bool /* enable */)
1871 1870
1872 // Message sent from the renderer to the browser to request that the browser 1871 // Message sent from the renderer to the browser to request that the browser
1873 // cache |data| associated with |url|. 1872 // cache |data| associated with |url|.
1874 IPC_MESSAGE_CONTROL3(ViewHostMsg_DidGenerateCacheableMetadata, 1873 IPC_MESSAGE_CONTROL3(ViewHostMsg_DidGenerateCacheableMetadata,
1875 GURL /* url */, 1874 GURL /* url */,
1876 double /* expected_response_time */, 1875 double /* expected_response_time */,
1877 std::vector<char> /* data */) 1876 std::vector<char> /* data */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698