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

Unified Diff: Source/core/html/shadow/MeterShadowElement.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/MediaControlElements.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 4ffa192b7bd2a31e213599a2fc5c6455d22e106a..42889f83630f5d314a5d83c1577f52d027b5abf4 100644
--- a/Source/core/html/shadow/MeterShadowElement.h
+++ b/Source/core/html/shadow/MeterShadowElement.h
@@ -48,7 +48,7 @@ private:
virtual bool rendererIsNeeded(const NodeRenderingContext&);
};
-class MeterInnerElement : public MeterShadowElement {
+class MeterInnerElement FINAL : public MeterShadowElement {
public:
MeterInnerElement(Document*);
static PassRefPtr<MeterInnerElement> create(Document*);
@@ -63,7 +63,7 @@ inline PassRefPtr<MeterInnerElement> MeterInnerElement::create(Document* documen
return adoptRef(new MeterInnerElement(document));
}
-class MeterBarElement : public MeterShadowElement {
+class MeterBarElement FINAL : public MeterShadowElement {
public:
MeterBarElement(Document* document)
: MeterShadowElement(document)
@@ -80,7 +80,7 @@ inline PassRefPtr<MeterBarElement> MeterBarElement::create(Document* document)
return adoptRef(new MeterBarElement(document));
}
-class MeterValueElement : public MeterShadowElement {
+class MeterValueElement FINAL : public MeterShadowElement {
public:
MeterValueElement(Document* document)
: MeterShadowElement(document)
« no previous file with comments | « Source/core/html/shadow/MediaControlElements.h ('k') | Source/core/html/shadow/PickerIndicatorElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698