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

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: Fix unload; chrome dependency in RenderWidget. Created 9 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 | 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 611 matching lines...) Expand 10 before | Expand all | Expand 10 after
622 // ViewHostMsg_UpdateRect_Flags::IS_REPAINT_ACK 622 // ViewHostMsg_UpdateRect_Flags::IS_REPAINT_ACK
623 // Indicates that this is a response to a ViewMsg_Repaint message. 623 // Indicates that this is a response to a ViewMsg_Repaint message.
624 // 624 //
625 // If flags is zero, then this message corresponds to an unsoliticed paint 625 // If flags is zero, then this message corresponds to an unsoliticed paint
626 // request by the render view. Any of the above bits may be set in flags, 626 // request by the render view. Any of the above bits may be set in flags,
627 // which would indicate that this paint message is an ACK for multiple 627 // which would indicate that this paint message is an ACK for multiple
628 // request messages. 628 // request messages.
629 IPC_STRUCT_MEMBER(int, flags) 629 IPC_STRUCT_MEMBER(int, flags)
630 IPC_STRUCT_END() 630 IPC_STRUCT_END()
631 631
632 IPC_STRUCT_BEGIN(ViewMsg_ClosePage_Params) 632 IPC_STRUCT_BEGIN(ViewMsg_SwapOut_Params)
633 // The identifier of the RenderProcessHost for the currently closing view. 633 // The identifier of the RenderProcessHost for the currently closing view.
634 // 634 //
635 // These first two parameters are technically redundant since they are 635 // These first two parameters are technically redundant since they are
636 // needed only when processing the ACK message, and the processor 636 // needed only when processing the ACK message, and the processor
637 // theoretically knows both the process and route ID. However, this is 637 // theoretically knows both the process and route ID. However, this is
638 // difficult to figure out with our current implementation, so this 638 // difficult to figure out with our current implementation, so this
639 // information is duplicate here. 639 // information is duplicated here.
640 IPC_STRUCT_MEMBER(int, closing_process_id) 640 IPC_STRUCT_MEMBER(int, closing_process_id)
641 641
642 // The route identifier for the currently closing RenderView. 642 // The route identifier for the currently closing RenderView.
643 IPC_STRUCT_MEMBER(int, closing_route_id) 643 IPC_STRUCT_MEMBER(int, closing_route_id)
644 644
645 // True when this close is for the first (closing) tab of a cross-site
646 // transition where we switch processes. False indicates the close is for the
647 // entire tab.
648 //
649 // When true, the new_* variables below must be filled in. Otherwise they must
650 // both be -1.
651 IPC_STRUCT_MEMBER(bool, for_cross_site_transition)
652
653 // The identifier of the RenderProcessHost for the new view attempting to 645 // The identifier of the RenderProcessHost for the new view attempting to
654 // replace the closing one above. This must be valid when 646 // replace the closing one above.
655 // for_cross_site_transition is set, and must be -1 otherwise.
656 IPC_STRUCT_MEMBER(int, new_render_process_host_id) 647 IPC_STRUCT_MEMBER(int, new_render_process_host_id)
657 648
658 // The identifier of the *request* the new view made that is causing the 649 // The identifier of the *request* the new view made that is causing the
659 // cross-site transition. This is *not* a route_id, but the request that we 650 // cross-site transition. This is *not* a route_id, but the request that we
660 // will resume once the ACK from the closing view has been received. This 651 // will resume once the ACK from the closing view has been received.
661 // must be valid when for_cross_site_transition is set, and must be -1
662 // otherwise.
663 IPC_STRUCT_MEMBER(int, new_request_id) 652 IPC_STRUCT_MEMBER(int, new_request_id)
664 IPC_STRUCT_END() 653 IPC_STRUCT_END()
665 654
666 IPC_STRUCT_BEGIN(ViewMsg_Navigate_Params) 655 IPC_STRUCT_BEGIN(ViewMsg_Navigate_Params)
667 // The page_id for this navigation, or -1 if it is a new navigation. Back, 656 // The page_id for this navigation, or -1 if it is a new navigation. Back,
668 // Forward, and Reload navigations should have a valid page_id. If the load 657 // Forward, and Reload navigations should have a valid page_id. If the load
669 // succeeds, then this page_id will be reflected in the resultant 658 // succeeds, then this page_id will be reflected in the resultant
670 // ViewHostMsg_FrameNavigate message. 659 // ViewHostMsg_FrameNavigate message.
671 IPC_STRUCT_MEMBER(int32, page_id) 660 IPC_STRUCT_MEMBER(int32, page_id)
672 661
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
787 IPC_MESSAGE_ROUTED0(ViewMsg_WasHidden) 776 IPC_MESSAGE_ROUTED0(ViewMsg_WasHidden)
788 777
789 // Tells the render view that it is no longer hidden (see WasHidden), and the 778 // Tells the render view that it is no longer hidden (see WasHidden), and the
790 // render view is expected to respond with a full repaint if needs_repainting 779 // render view is expected to respond with a full repaint if needs_repainting
791 // is true. In that case, the generated ViewHostMsg_PaintRect message will 780 // is true. In that case, the generated ViewHostMsg_PaintRect message will
792 // have the IS_RESTORE_ACK flag set. If needs_repainting is false, then this 781 // have the IS_RESTORE_ACK flag set. If needs_repainting is false, then this
793 // message does not trigger a message in response. 782 // message does not trigger a message in response.
794 IPC_MESSAGE_ROUTED1(ViewMsg_WasRestored, 783 IPC_MESSAGE_ROUTED1(ViewMsg_WasRestored,
795 bool /* needs_repainting */) 784 bool /* needs_repainting */)
796 785
786 // Sent to inform the view that it was swapped out. This allows the process to
787 // exit if no other views are using it.
788 IPC_MESSAGE_ROUTED0(ViewMsg_WasSwappedOut)
789
797 // Sent to render the view into the supplied transport DIB, resize 790 // Sent to render the view into the supplied transport DIB, resize
798 // the web widget to match the |page_size|, scale it by the 791 // the web widget to match the |page_size|, scale it by the
799 // appropriate scale to make it fit the |desired_size|, and return 792 // appropriate scale to make it fit the |desired_size|, and return
800 // it. In response to this message, the host generates a 793 // it. In response to this message, the host generates a
801 // ViewHostMsg_PaintAtSize_ACK message. Note that the DIB *must* be 794 // ViewHostMsg_PaintAtSize_ACK message. Note that the DIB *must* be
802 // the right size to receive an RGBA image at the |desired_size|. 795 // the right size to receive an RGBA image at the |desired_size|.
803 // |tag| is sent along with ViewHostMsg_PaintAtSize_ACK unmodified to 796 // |tag| is sent along with ViewHostMsg_PaintAtSize_ACK unmodified to
804 // identify the PaintAtSize message the ACK belongs to. 797 // identify the PaintAtSize message the ACK belongs to.
805 IPC_MESSAGE_ROUTED4(ViewMsg_PaintAtSize, 798 IPC_MESSAGE_ROUTED4(ViewMsg_PaintAtSize,
806 TransportDIB::Handle /* dib_handle */, 799 TransportDIB::Handle /* dib_handle */,
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
1053 // When a renderer sends a ViewHostMsg_Focus to the browser process, 1046 // When a renderer sends a ViewHostMsg_Focus to the browser process,
1054 // the browser has the option of sending a ViewMsg_CantFocus back to 1047 // the browser has the option of sending a ViewMsg_CantFocus back to
1055 // the renderer. 1048 // the renderer.
1056 IPC_MESSAGE_ROUTED0(ViewMsg_CantFocus) 1049 IPC_MESSAGE_ROUTED0(ViewMsg_CantFocus)
1057 1050
1058 // Instructs the renderer to invoke the frame's shouldClose method, which 1051 // Instructs the renderer to invoke the frame's shouldClose method, which
1059 // runs the onbeforeunload event handler. Expects the result to be returned 1052 // runs the onbeforeunload event handler. Expects the result to be returned
1060 // via ViewHostMsg_ShouldClose. 1053 // via ViewHostMsg_ShouldClose.
1061 IPC_MESSAGE_ROUTED0(ViewMsg_ShouldClose) 1054 IPC_MESSAGE_ROUTED0(ViewMsg_ShouldClose)
1062 1055
1056 // Instructs the renderer to swap out for a cross-site transition, including
1057 // running the unload event handler. See the struct above for more details.
1058 //
1059 // Expects a SwapOut_ACK message when finished, where the parameters are
1060 // echoed back.
1061 IPC_MESSAGE_ROUTED1(ViewMsg_SwapOut,
1062 ViewMsg_SwapOut_Params)
1063
1063 // Instructs the renderer to close the current page, including running the 1064 // Instructs the renderer to close the current page, including running the
1064 // onunload event handler. See the struct in render_messages.h for more. 1065 // onunload event handler.
1065 // 1066 //
1066 // Expects a ClosePage_ACK message when finished, where the parameters are 1067 // Expects a ClosePage_ACK message when finished.
1067 // echoed back. 1068 IPC_MESSAGE_ROUTED0(ViewMsg_ClosePage)
1068 IPC_MESSAGE_ROUTED1(ViewMsg_ClosePage,
1069 ViewMsg_ClosePage_Params)
1070 1069
1071 // Notifies the renderer about ui theme changes 1070 // Notifies the renderer about ui theme changes
1072 IPC_MESSAGE_ROUTED0(ViewMsg_ThemeChanged) 1071 IPC_MESSAGE_ROUTED0(ViewMsg_ThemeChanged)
1073 1072
1074 // Notifies the renderer that a paint is to be generated for the rectangle 1073 // Notifies the renderer that a paint is to be generated for the rectangle
1075 // passed in. 1074 // passed in.
1076 IPC_MESSAGE_ROUTED1(ViewMsg_Repaint, 1075 IPC_MESSAGE_ROUTED1(ViewMsg_Repaint,
1077 gfx::Size /* The view size to be repainted */) 1076 gfx::Size /* The view size to be repainted */)
1078 1077
1079 // Notification that a move or resize renderer's containing window has 1078 // Notification that a move or resize renderer's containing window has
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
1295 int /* active_match_ordinal */, 1294 int /* active_match_ordinal */,
1296 bool /* final_update */) 1295 bool /* final_update */)
1297 1296
1298 // Provides the result from running OnMsgShouldClose. |proceed| matches the 1297 // Provides the result from running OnMsgShouldClose. |proceed| matches the
1299 // return value of the the frame's shouldClose method (which includes the 1298 // return value of the the frame's shouldClose method (which includes the
1300 // onbeforeunload handler): true if the user decided to proceed with leaving 1299 // onbeforeunload handler): true if the user decided to proceed with leaving
1301 // the page. 1300 // the page.
1302 IPC_MESSAGE_ROUTED1(ViewHostMsg_ShouldClose_ACK, 1301 IPC_MESSAGE_ROUTED1(ViewHostMsg_ShouldClose_ACK,
1303 bool /* proceed */) 1302 bool /* proceed */)
1304 1303
1304 // Indicates that the current renderer has swapped out, after a SwapOut
1305 // message. The parameters are just echoed from the SwapOut request.
1306 IPC_MESSAGE_ROUTED1(ViewHostMsg_SwapOut_ACK,
1307 ViewMsg_SwapOut_Params)
1308
1305 // Indicates that the current page has been closed, after a ClosePage 1309 // Indicates that the current page has been closed, after a ClosePage
1306 // message. The parameters are just echoed from the ClosePage request. 1310 // message.
1307 IPC_MESSAGE_ROUTED1(ViewHostMsg_ClosePage_ACK, 1311 IPC_MESSAGE_ROUTED0(ViewHostMsg_ClosePage_ACK)
1308 ViewMsg_ClosePage_Params)
1309 1312
1310 // Notifies the browser that we have session history information. 1313 // Notifies the browser that we have session history information.
1311 // page_id: unique ID that allows us to distinguish between history entries. 1314 // page_id: unique ID that allows us to distinguish between history entries.
1312 IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateState, 1315 IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateState,
1313 int32 /* page_id */, 1316 int32 /* page_id */,
1314 std::string /* state */) 1317 std::string /* state */)
1315 1318
1316 // Notifies the browser that a document has been loaded in a frame. 1319 // Notifies the browser that a document has been loaded in a frame.
1317 IPC_MESSAGE_ROUTED1(ViewHostMsg_DocumentLoadedInFrame, 1320 IPC_MESSAGE_ROUTED1(ViewHostMsg_DocumentLoadedInFrame,
1318 int64 /* frame_id */) 1321 int64 /* frame_id */)
(...skipping 633 matching lines...) Expand 10 before | Expand all | Expand 10 after
1952 1955
1953 // Stores new inspector setting in the profile. 1956 // Stores new inspector setting in the profile.
1954 // TODO(jam): this should be in the chrome module 1957 // TODO(jam): this should be in the chrome module
1955 IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateInspectorSetting, 1958 IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateInspectorSetting,
1956 std::string, /* key */ 1959 std::string, /* key */
1957 std::string /* value */) 1960 std::string /* value */)
1958 1961
1959 // Send back a string to be recorded by UserMetrics. 1962 // Send back a string to be recorded by UserMetrics.
1960 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction, 1963 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction,
1961 std::string /* action */) 1964 std::string /* action */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698