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

Unified Diff: Source/core/html/HTMLFrameOwnerElement.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/core/html/HTMLFrameOwnerElement.h
diff --git a/Source/core/html/HTMLFrameOwnerElement.h b/Source/core/html/HTMLFrameOwnerElement.h
index a8bbe75f0965eeeae6bf8301273f91145de9c8e0..87ab2c6232c715c9d95b4c98186732342e03b583 100644
--- a/Source/core/html/HTMLFrameOwnerElement.h
+++ b/Source/core/html/HTMLFrameOwnerElement.h
@@ -39,6 +39,8 @@ public:
// FrameOwner overrides:
virtual bool isLocal() const { return true; }
+ virtual void setContentFrame(Frame&) OVERRIDE;
+ virtual void clearContentFrame() OVERRIDE;
abarth-chromium 2014/06/13 18:06:46 This can still be private. That will force caller
dcheng 2014/06/13 23:56:12 Done.
virtual SandboxFlags sandboxFlags() const OVERRIDE { return m_sandboxFlags; }
virtual void dispatchLoad() OVERRIDE;
@@ -46,9 +48,6 @@ public:
DOMWindow* contentWindow() const;
Document* contentDocument() const;
- void setContentFrame(Frame&);
- void clearContentFrame();
-
void disconnectContentFrame();
// Most subclasses use RenderPart (either RenderEmbeddedObject or RenderIFrame)

Powered by Google App Engine
This is Rietveld 408576698