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

Unified Diff: Source/core/html/shadow/MeterShadowElement.h

Issue 1219013005: Fix virtual/override/final usage in Source/core/html/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/shadow/MediaControls.h ('k') | Source/core/html/shadow/PickerIndicatorElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/shadow/MeterShadowElement.h
diff --git a/Source/core/html/shadow/MeterShadowElement.h b/Source/core/html/shadow/MeterShadowElement.h
index 71d03be9f4e096d8c99c99587896c5b0748a941f..198f2e72398cfb7696bda284cc418522cad5d360 100644
--- a/Source/core/html/shadow/MeterShadowElement.h
+++ b/Source/core/html/shadow/MeterShadowElement.h
@@ -44,7 +44,7 @@ protected:
HTMLMeterElement* meterElement() const;
private:
- virtual bool layoutObjectIsNeeded(const ComputedStyle&) override;
+ bool layoutObjectIsNeeded(const ComputedStyle&) override;
};
class MeterInnerElement final : public MeterShadowElement {
@@ -53,8 +53,8 @@ public:
private:
explicit MeterInnerElement(Document&);
- virtual bool layoutObjectIsNeeded(const ComputedStyle&) override;
- virtual LayoutObject* createLayoutObject(const ComputedStyle&) override;
+ bool layoutObjectIsNeeded(const ComputedStyle&) override;
+ LayoutObject* createLayoutObject(const ComputedStyle&) override;
};
class MeterBarElement final : public MeterShadowElement {
« no previous file with comments | « Source/core/html/shadow/MediaControls.h ('k') | Source/core/html/shadow/PickerIndicatorElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698