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

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

Issue 972313002: Make <webview> use out-of-process iframe architecture. (Closed) Base URL: ssh://saopaulo.wat/mnt/dev/shared/src@testoopif2z-better-chrome
Patch Set: some review comments addressed Created 5 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
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 "content/common/content_export.h" 8 #include "content/common/content_export.h"
9 #include "content/common/content_param_traits.h" 9 #include "content/common/content_param_traits.h"
10 #include "content/common/frame_message_enums.h" 10 #include "content/common/frame_message_enums.h"
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 // PlzNavigate 498 // PlzNavigate
499 // Tells the renderer that a navigation is ready to commit. The renderer should 499 // Tells the renderer that a navigation is ready to commit. The renderer should
500 // request |stream_url| to get access to the stream containing the body of the 500 // request |stream_url| to get access to the stream containing the body of the
501 // response. 501 // response.
502 IPC_MESSAGE_ROUTED4(FrameMsg_CommitNavigation, 502 IPC_MESSAGE_ROUTED4(FrameMsg_CommitNavigation,
503 content::ResourceResponseHead, /* response */ 503 content::ResourceResponseHead, /* response */
504 GURL, /* stream_url */ 504 GURL, /* stream_url */
505 content::CommonNavigationParams, /* common_params */ 505 content::CommonNavigationParams, /* common_params */
506 content::RequestNavigationParams /* request_params */) 506 content::RequestNavigationParams /* request_params */)
507 507
508 // Replace this frame with a RenderFrameProxy whose routing ID is
509 // |proxy_routing_id|.
510 // The proxy points to a guest process.
Charlie Reis 2015/04/08 23:42:11 Please rephrase (same "proxy points" issue).
lazyboy 2015/04/14 01:38:04 Done.
511 IPC_MESSAGE_ROUTED1(FrameMsg_ReplaceLocalFrameWithProxy,
512 int32 /* proxy_routing_id */)
513
508 #if defined(ENABLE_PLUGINS) 514 #if defined(ENABLE_PLUGINS)
509 // Notifies the renderer of updates to the Plugin Power Saver origin whitelist. 515 // Notifies the renderer of updates to the Plugin Power Saver origin whitelist.
510 IPC_MESSAGE_ROUTED1(FrameMsg_UpdatePluginContentOriginWhitelist, 516 IPC_MESSAGE_ROUTED1(FrameMsg_UpdatePluginContentOriginWhitelist,
511 std::set<GURL> /* origin_whitelist */) 517 std::set<GURL> /* origin_whitelist */)
512 #endif // defined(ENABLE_PLUGINS) 518 #endif // defined(ENABLE_PLUGINS)
513 519
514 // ----------------------------------------------------------------------------- 520 // -----------------------------------------------------------------------------
515 // Messages sent from the renderer to the browser. 521 // Messages sent from the renderer to the browser.
516 522
517 // Blink and JavaScript error messages to log to the console 523 // Blink and JavaScript error messages to log to the console
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
826 IPC_MESSAGE_ROUTED0(FrameHostMsg_DispatchLoad) 832 IPC_MESSAGE_ROUTED0(FrameHostMsg_DispatchLoad)
827 833
828 #if defined(OS_MACOSX) || defined(OS_ANDROID) 834 #if defined(OS_MACOSX) || defined(OS_ANDROID)
829 835
830 // Message to show/hide a popup menu using native controls. 836 // Message to show/hide a popup menu using native controls.
831 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, 837 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup,
832 FrameHostMsg_ShowPopup_Params) 838 FrameHostMsg_ShowPopup_Params)
833 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) 839 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup)
834 840
835 #endif 841 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698