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

Unified Diff: Source/core/page/FrameView.h

Issue 23483024: Assume FrameView::m_frame is never NULL (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 4 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/accessibility/AccessibilityRenderObject.cpp ('k') | Source/core/page/FrameView.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/FrameView.h
diff --git a/Source/core/page/FrameView.h b/Source/core/page/FrameView.h
index a17b47b1549a8d6573b1493c10ffc4ddc3924a38..9a0dece11f64bc8233ccd2ef0bb665915f93a873 100644
--- a/Source/core/page/FrameView.h
+++ b/Source/core/page/FrameView.h
@@ -74,9 +74,8 @@ public:
virtual bool scheduleAnimation();
Frame* frame() const { return m_frame.get(); }
- void clearFrame();
- RenderView* renderView() const { return m_frame ? m_frame->contentRenderer() : 0; }
+ RenderView* renderView() const { return m_frame->contentRenderer(); }
int mapFromLayoutToCSSUnits(LayoutUnit);
LayoutUnit mapFromCSSToLayoutUnits(int);
« no previous file with comments | « Source/core/accessibility/AccessibilityRenderObject.cpp ('k') | Source/core/page/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698