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

Unified Diff: third_party/WebKit/Source/core/frame/RemoteFrameClient.h

Issue 1973133002: ✀ Remove postMessage plumbing for swappedout:// ✀ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/frame/RemoteFrameClient.h
diff --git a/third_party/WebKit/Source/core/frame/RemoteFrameClient.h b/third_party/WebKit/Source/core/frame/RemoteFrameClient.h
index f56e8a383a1cb0b36164c22533c9b22be2b9d847..2599da00d3c6bf0b21357e17dabec1492ea9606e 100644
--- a/third_party/WebKit/Source/core/frame/RemoteFrameClient.h
+++ b/third_party/WebKit/Source/core/frame/RemoteFrameClient.h
@@ -24,6 +24,9 @@ public:
virtual void reload(FrameLoadType, ClientRedirectPolicy) = 0;
virtual unsigned backForwardLength() = 0;
+ // Forwards a postMessage for a remote frame.
+ virtual void willCheckAndDispatchMessageEvent(MessageEvent*, PassRefPtr<SecurityOrigin> target, LocalFrame* sourceFrame) const = 0;
alexmos 2016/05/13 21:30:07 Now that this is only forwarding a message without
dcheng 2016/05/13 22:00:46 I've renamed it to forwardPostMessage, since I thi
alexmos 2016/05/13 23:11:28 Perfect, LGTM. Looks like this needs a rebase?
+
// FIXME: Remove this method once we have input routing in the browser
// process. See http://crbug.com/339659.
virtual void forwardInputEvent(Event*) = 0;

Powered by Google App Engine
This is Rietveld 408576698