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

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

Issue 14022022: FINALizing of the Node hierarchy. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Action review comments. 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/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 7b61f217c80f286c7a013e5e040188aad97e4029..f78db04e140b4e90f11cf2912ec60021ef7dc158 100644
--- a/Source/core/html/shadow/ProgressShadowElement.h
+++ b/Source/core/html/shadow/ProgressShadowElement.h
@@ -48,7 +48,7 @@ protected:
virtual bool rendererIsNeeded(const NodeRenderingContext&);
};
-class ProgressInnerElement : public ProgressShadowElement {
+class ProgressInnerElement FINAL : public ProgressShadowElement {
public:
ProgressInnerElement(Document*);
@@ -58,7 +58,7 @@ private:
virtual bool rendererIsNeeded(const NodeRenderingContext&);
};
-class ProgressBarElement : public ProgressShadowElement {
+class ProgressBarElement FINAL : public ProgressShadowElement {
public:
ProgressBarElement(Document* document)
: ProgressShadowElement(document)
@@ -75,7 +75,7 @@ inline PassRefPtr<ProgressBarElement> ProgressBarElement::create(Document* docum
return adoptRef(new ProgressBarElement(document));
}
-class ProgressValueElement : public ProgressShadowElement {
+class ProgressValueElement FINAL : public ProgressShadowElement {
public:
ProgressValueElement(Document* document)
: ProgressShadowElement(document)
« 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