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

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

Issue 129173004: Update rendering classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 6 years, 11 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/RenderListBox.h ('k') | Source/core/rendering/RenderListMarker.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderListItem.h
diff --git a/Source/core/rendering/RenderListItem.h b/Source/core/rendering/RenderListItem.h
index 76f6087ea4b484f6300ae72ddae369ffe266ab47..f3b42fb9d2f006948dbcf28cbe3e56aa24860fb7 100644
--- a/Source/core/rendering/RenderListItem.h
+++ b/Source/core/rendering/RenderListItem.h
@@ -55,27 +55,27 @@ public:
static unsigned itemCountForOrderedList(const HTMLOListElement*);
private:
- virtual const char* renderName() const { return "RenderListItem"; }
+ virtual const char* renderName() const OVERRIDE { return "RenderListItem"; }
- virtual bool isListItem() const { return true; }
+ virtual bool isListItem() const OVERRIDE { return true; }
- virtual void willBeDestroyed();
+ virtual void willBeDestroyed() OVERRIDE;
virtual void insertedIntoTree() OVERRIDE;
virtual void willBeRemovedFromTree() OVERRIDE;
- virtual bool isEmpty() const;
- virtual void paint(PaintInfo&, const LayoutPoint&);
+ virtual bool isEmpty() const OVERRIDE;
+ virtual void paint(PaintInfo&, const LayoutPoint&) OVERRIDE;
- virtual void layout();
+ virtual void layout() OVERRIDE;
virtual bool supportsPartialLayout() const OVERRIDE { return false; }
void positionListMarker();
- virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle);
+ virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle) OVERRIDE;
- virtual void addOverflowFromChildren();
+ virtual void addOverflowFromChildren() OVERRIDE;
inline int calcValue() const;
void updateValueNow() const;
« no previous file with comments | « Source/core/rendering/RenderListBox.h ('k') | Source/core/rendering/RenderListMarker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698