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

Unified Diff: Source/core/html/shadow/ProgressShadowElement.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/PickerIndicatorElement.h ('k') | Source/core/html/shadow/SliderThumbElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/shadow/ProgressShadowElement.h
diff --git a/Source/core/html/shadow/ProgressShadowElement.h b/Source/core/html/shadow/ProgressShadowElement.h
index 70bbf4e97cd9e326b26cf1c5ac5fd74c2fb7f327..6600a51deec5bbe337e8852cd5ae25b608d2ceca 100644
--- a/Source/core/html/shadow/ProgressShadowElement.h
+++ b/Source/core/html/shadow/ProgressShadowElement.h
@@ -45,7 +45,7 @@ public:
HTMLProgressElement* progressElement() const;
protected:
- virtual bool layoutObjectIsNeeded(const ComputedStyle&) override;
+ bool layoutObjectIsNeeded(const ComputedStyle&) override;
};
class ProgressInnerElement final : public ProgressShadowElement {
@@ -55,8 +55,8 @@ public:
private:
explicit ProgressInnerElement(Document&);
- virtual LayoutObject* createLayoutObject(const ComputedStyle&) override;
- virtual bool layoutObjectIsNeeded(const ComputedStyle&) override;
+ LayoutObject* createLayoutObject(const ComputedStyle&) override;
+ bool layoutObjectIsNeeded(const ComputedStyle&) override;
};
class ProgressBarElement final : public ProgressShadowElement {
« no previous file with comments | « Source/core/html/shadow/PickerIndicatorElement.h ('k') | Source/core/html/shadow/SliderThumbElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698