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

Unified Diff: content/common/frame_messages.h

Issue 1046933005: Refactor postMessage for out-of-process iframes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Charlie's nits 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/web_contents/web_contents_impl.cc ('k') | content/common/swapped_out_messages.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/frame_messages.h
diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h
index 8a4fb0c3d2a45029db222d5bfa051d74aeb36b09..d60982205b7db773e2ae97053b87add2db235725 100644
--- a/content/common/frame_messages.h
+++ b/content/common/frame_messages.h
@@ -18,6 +18,7 @@
#include "content/public/common/context_menu_params.h"
#include "content/public/common/frame_navigate_params.h"
#include "content/public/common/javascript_message_type.h"
+#include "content/public/common/message_port_types.h"
#include "content/public/common/page_state.h"
#include "content/public/common/resource_response.h"
#include "content/public/common/transition_element.h"
@@ -205,6 +206,37 @@ IPC_STRUCT_BEGIN_WITH_PARENT(FrameHostMsg_DidCommitProvisionalLoad_Params,
IPC_STRUCT_MEMBER(base::TimeTicks, ui_timestamp)
IPC_STRUCT_END()
+IPC_STRUCT_BEGIN(FrameMsg_PostMessage_Params)
+ // Whether the data format is supplied as serialized script value, or as
+ // a simple string. If it is a raw string, must be converted from string to a
+ // WebSerializedScriptValue in the renderer process.
+ IPC_STRUCT_MEMBER(bool, is_data_raw_string)
+
+ // The serialized script value.
+ IPC_STRUCT_MEMBER(base::string16, data)
+
+ // When sent to the browser, this is the routing ID of the source frame in
+ // the source process. The browser replaces it with the routing ID of the
+ // equivalent frame proxy in the destination process.
+ IPC_STRUCT_MEMBER(int, source_routing_id)
+
+ // When sent from the browser, this is the routing ID of the source view in
+ // the destination process. This currently exists only to support legacy
+ // postMessage to Android WebView and will be removed once crbug.com/473258
+ // is fixed.
+ IPC_STRUCT_MEMBER(int, source_view_routing_id)
+
+ // The origin of the source frame.
+ IPC_STRUCT_MEMBER(base::string16, source_origin)
+
+ // The origin for the message's target.
+ IPC_STRUCT_MEMBER(base::string16, target_origin)
+
+ // Information about the MessagePorts this message contains.
+ IPC_STRUCT_MEMBER(std::vector<content::TransferredMessagePort>, message_ports)
+ IPC_STRUCT_MEMBER(std::vector<int>, new_routing_ids)
+IPC_STRUCT_END()
+
IPC_STRUCT_TRAITS_BEGIN(content::CommonNavigationParams)
IPC_STRUCT_TRAITS_MEMBER(url)
IPC_STRUCT_TRAITS_MEMBER(referrer)
@@ -508,6 +540,9 @@ IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateName, std::string /* name */)
IPC_MESSAGE_ROUTED1(FrameMsg_SetTextTrackSettings,
FrameMsg_TextTrackSettings_Params /* params */)
+// Posts a message from a frame in another process to the current renderer.
+IPC_MESSAGE_ROUTED1(FrameMsg_PostMessageEvent, FrameMsg_PostMessage_Params)
+
#if defined(OS_ANDROID)
// External popup menus.
@@ -853,6 +888,11 @@ IPC_MESSAGE_ROUTED1(FrameHostMsg_ToggleFullscreen, bool /* enter_fullscreen */)
// out-of-process parent frame.
IPC_MESSAGE_ROUTED0(FrameHostMsg_DispatchLoad)
+// Sent to the browser from a frame proxy to post a message to the frame's
+// active renderer.
+IPC_MESSAGE_ROUTED1(FrameHostMsg_RouteMessageEvent,
+ FrameMsg_PostMessage_Params)
+
#if defined(OS_MACOSX) || defined(OS_ANDROID)
// Message to show/hide a popup menu using native controls.
« no previous file with comments | « content/browser/web_contents/web_contents_impl.cc ('k') | content/common/swapped_out_messages.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698