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

Unified Diff: Source/web/WebRemoteFrameImpl.h

Issue 334483002: Add Blink APIs for frame tree mirroring. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix some more crashes, etc. Created 6 years, 6 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/web/WebRemoteFrameImpl.h
diff --git a/Source/web/WebRemoteFrameImpl.h b/Source/web/WebRemoteFrameImpl.h
index ffa739dc372d10270f4e754ac4c2f4115aa3fca5..184137a63bdbee6afb2e213ed7edce1be4701d68 100644
--- a/Source/web/WebRemoteFrameImpl.h
+++ b/Source/web/WebRemoteFrameImpl.h
@@ -43,6 +43,7 @@ public:
virtual bool hasHorizontalScrollbar() const OVERRIDE;
virtual bool hasVerticalScrollbar() const OVERRIDE;
virtual WebView* view() const OVERRIDE;
+ virtual void initializeAsMainFrame(WebView*) OVERRIDE;
virtual WebFrame* traversePrevious(bool wrap) const OVERRIDE;
virtual WebFrame* traverseNext(bool wrap) const OVERRIDE;
virtual WebFrame* findChildByName(const WebString&) const OVERRIDE;
@@ -170,6 +171,10 @@ public:
virtual bool selectionStartHasSpellingMarkerFor(int from, int length) const OVERRIDE;
virtual WebString layerTreeAsText(bool showDebugInfo = false) const OVERRIDE;
+ virtual WebLocalFrame* createLocalChild(const WebString& name, WebFrameClient*) OVERRIDE;
+ virtual WebRemoteFrame* createRemoteChild(const WebString& name, WebFrameClient*) OVERRIDE;
+
+ void setWebCoreFrame(PassRefPtr<WebCore::RemoteFrame>);
WebCore::RemoteFrame* frame() const { return m_frame.get(); }
private:

Powered by Google App Engine
This is Rietveld 408576698