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

Unified Diff: Source/core/frame/Frame.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
Index: Source/core/frame/Frame.h
diff --git a/Source/core/frame/Frame.h b/Source/core/frame/Frame.h
index 498cb77c81bfd740d26d1fdc0c02b6131f656796..173bbba5f02864bdb2b68a4730a296f522c61054 100644
--- a/Source/core/frame/Frame.h
+++ b/Source/core/frame/Frame.h
@@ -30,6 +30,8 @@
#include "core/page/FrameTree.h"
#include "platform/heap/Handle.h"
+#include "platform/weborigin/KURL.h"
+#include "platform/weborigin/Referrer.h"
dcheng 2014/09/25 00:21:19 Do we prefer to forward declare in this case to mi
Nate Chapin 2014/09/25 20:19:19 Yeah, don't remember why I did it this way. Done.
#include "wtf/Forward.h"
#include "wtf/RefCounted.h"
@@ -40,6 +42,7 @@ class WebLayer;
namespace blink {
class ChromeClient;
+class Document;
class FrameClient;
class FrameHost;
class FrameOwner;
@@ -56,6 +59,7 @@ public:
virtual ~Frame();
+ virtual void navigate(Document& originDocument, const KURL&, const Referrer&, bool lockBackForwardList) = 0;
virtual void detach() = 0;
void detachChildren();

Powered by Google App Engine
This is Rietveld 408576698