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

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: Devirtualize initializeAsMainFrame 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
« no previous file with comments | « Source/core/frame/FrameOwner.h ('k') | Source/core/html/HTMLFrameOwnerElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLFrameOwnerElement.h
diff --git a/Source/core/html/HTMLFrameOwnerElement.h b/Source/core/html/HTMLFrameOwnerElement.h
index a8bbe75f0965eeeae6bf8301273f91145de9c8e0..94c2b30ae6964e14a50560159db375ab47ca4037 100644
--- a/Source/core/html/HTMLFrameOwnerElement.h
+++ b/Source/core/html/HTMLFrameOwnerElement.h
@@ -37,11 +37,6 @@ class HTMLFrameOwnerElement : public HTMLElement, public FrameOwner {
public:
virtual ~HTMLFrameOwnerElement();
- // FrameOwner overrides:
- virtual bool isLocal() const { return true; }
- virtual SandboxFlags sandboxFlags() const OVERRIDE { return m_sandboxFlags; }
- virtual void dispatchLoad() OVERRIDE;
-
Frame* contentFrame() const { return m_contentFrame; }
DOMWindow* contentWindow() const;
Document* contentDocument() const;
@@ -88,6 +83,11 @@ private:
virtual bool isKeyboardFocusable() const OVERRIDE;
virtual bool isFrameOwnerElement() const OVERRIDE FINAL { return true; }
+ // FrameOwner overrides:
+ virtual bool isLocal() const { return true; }
+ virtual SandboxFlags sandboxFlags() const OVERRIDE { return m_sandboxFlags; }
+ virtual void dispatchLoad() OVERRIDE;
+
Frame* m_contentFrame;
RefPtr<Widget> m_widget;
SandboxFlags m_sandboxFlags;
« no previous file with comments | « Source/core/frame/FrameOwner.h ('k') | Source/core/html/HTMLFrameOwnerElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698