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

Unified Diff: Source/core/frame/FrameClient.h

Issue 573353002: Plumbing toward transitioning remote frame back to a local frame. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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 | « Source/core/frame/Frame.h ('k') | Source/core/frame/LocalFrame.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/FrameClient.h
diff --git a/Source/core/frame/FrameClient.h b/Source/core/frame/FrameClient.h
index 3d388af7e400acfa0dedc1363c59a1455bb4e504..c21928f75ebce4759e89767d6875b3283a8e3f58 100644
--- a/Source/core/frame/FrameClient.h
+++ b/Source/core/frame/FrameClient.h
@@ -10,6 +10,7 @@ namespace blink {
class Frame;
class LocalFrame;
class MessageEvent;
+class ResourceRequest;
class SecurityOrigin;
class FrameClient {
@@ -27,6 +28,9 @@ public:
// Returns true if the embedder intercepted the postMessage call
virtual bool willCheckAndDispatchMessageEvent(SecurityOrigin* /*target*/, MessageEvent*, LocalFrame* /*sourceFrame*/) const { return false; }
+ // Remote frame only:
+ virtual void navigate(const ResourceRequest&, bool shouldReplaceCurrentEntry) { }
Nate Chapin 2014/09/17 19:42:54 Should we create a RemoteFrameClient/RemoteFrameCl
dcheng 2014/09/17 21:38:25 I think this makes sense. We didn't need it initia
+
virtual ~FrameClient() { }
};
« no previous file with comments | « Source/core/frame/Frame.h ('k') | Source/core/frame/LocalFrame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698