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

Unified Diff: Source/core/rendering/RenderWidget.h

Issue 14383002: Apply FINAL to the RenderObject hierarchy. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase, add OVERRIDEs. Created 7 years, 8 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/rendering/RenderView.h ('k') | Source/core/rendering/RenderWordBreak.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderWidget.h
diff --git a/Source/core/rendering/RenderWidget.h b/Source/core/rendering/RenderWidget.h
index ef8f3b74179d8c5804e90ce787c56fd45986af59..f825141fd2e331773f7a4a688848de400d19aa6e 100644
--- a/Source/core/rendering/RenderWidget.h
+++ b/Source/core/rendering/RenderWidget.h
@@ -79,7 +79,7 @@ protected:
void clearWidget();
- virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle);
+ virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle) OVERRIDE FINAL;
virtual void layout();
virtual void paint(PaintInfo&, const LayoutPoint&);
virtual CursorDirective getCursor(const LayoutPoint&, Cursor&) const;
@@ -88,12 +88,12 @@ protected:
virtual void paintContents(PaintInfo&, const LayoutPoint&);
private:
- virtual bool isWidget() const { return true; }
+ virtual bool isWidget() const OVERRIDE FINAL { return true; }
- virtual void willBeDestroyed();
- virtual void destroy();
- virtual void setSelectionState(SelectionState);
- virtual void setOverlapTestResult(bool);
+ virtual void willBeDestroyed() OVERRIDE FINAL;
+ virtual void destroy() OVERRIDE FINAL;
+ virtual void setSelectionState(SelectionState) OVERRIDE FINAL;
+ virtual void setOverlapTestResult(bool) OVERRIDE FINAL;
bool setWidgetGeometry(const LayoutRect&);
bool updateWidgetGeometry();
« no previous file with comments | « Source/core/rendering/RenderView.h ('k') | Source/core/rendering/RenderWordBreak.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698