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

Unified Diff: Source/core/html/HTMLFrameOwnerElement.h

Issue 219903002: Revert 170347 "Convert HTMLFrameOwnerElement and FocusController..." (Closed) Base URL: svn://svn.chromium.org/blink/branches/chromium/1917/
Patch Set: Created 6 years, 9 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/html/HTMLFrameElementBase.cpp ('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
===================================================================
--- Source/core/html/HTMLFrameOwnerElement.h (revision 170478)
+++ Source/core/html/HTMLFrameOwnerElement.h (working copy)
@@ -29,18 +29,18 @@
class DOMWindow;
class ExceptionState;
-class Frame;
+class LocalFrame;
class RenderPart;
class HTMLFrameOwnerElement : public HTMLElement {
public:
virtual ~HTMLFrameOwnerElement();
- Frame* contentFrame() const { return m_contentFrame; }
+ LocalFrame* contentFrame() const { return m_contentFrame; }
DOMWindow* contentWindow() const;
Document* contentDocument() const;
- void setContentFrame(Frame&);
+ void setContentFrame(LocalFrame&);
void clearContentFrame();
void disconnectContentFrame();
@@ -73,7 +73,7 @@
virtual bool isKeyboardFocusable() const OVERRIDE;
virtual bool isFrameOwnerElement() const OVERRIDE FINAL { return true; }
- Frame* m_contentFrame;
+ LocalFrame* m_contentFrame;
SandboxFlags m_sandboxFlags;
};
« no previous file with comments | « Source/core/html/HTMLFrameElementBase.cpp ('k') | Source/core/html/HTMLFrameOwnerElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698