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

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: forward declarations, drop a spurious parameter 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/core.gypi ('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/Frame.h
diff --git a/Source/core/frame/Frame.h b/Source/core/frame/Frame.h
index 997a1893fe3070ba136d79e8f8a593e942f36c33..4de75697368724a9d39588a167b869f3e4d3a1c7 100644
--- a/Source/core/frame/Frame.h
+++ b/Source/core/frame/Frame.h
@@ -36,16 +36,20 @@
namespace blink {
class ChromeClient;
+class Document;
class FrameClient;
class FrameHost;
class FrameOwner;
class HTMLFrameOwnerElement;
class LocalDOMWindow;
+class KURL;
class Page;
class RenderPart;
class Settings;
class WebLayer;
+struct Referrer;
+
class Frame : public RefCountedWillBeGarbageCollectedFinalized<Frame> {
public:
virtual bool isLocalFrame() const { return false; }
@@ -54,6 +58,7 @@ public:
virtual ~Frame();
virtual void trace(Visitor*);
+ virtual void navigate(Document& originDocument, const KURL&, const Referrer&, bool lockBackForwardList) = 0;
virtual void detach() = 0;
void detachChildren();
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/frame/LocalFrame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698