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

Unified Diff: Source/core/html/shadow/TextControlInnerElements.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/SpinButtonElement.h ('k') | Source/core/html/shadow/TextFieldDecorationElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/shadow/TextControlInnerElements.h
diff --git a/Source/core/html/shadow/TextControlInnerElements.h b/Source/core/html/shadow/TextControlInnerElements.h
index 09f2b4615b81e9c3725f163bf890f42780922fdf..5b7ca261c2976bd41105db2abee90b3f973d1969 100644
--- a/Source/core/html/shadow/TextControlInnerElements.h
+++ b/Source/core/html/shadow/TextControlInnerElements.h
@@ -35,7 +35,7 @@ namespace WebCore {
class SpeechInput;
-class TextControlInnerContainer : public HTMLDivElement {
+class TextControlInnerContainer FINAL : public HTMLDivElement {
public:
static PassRefPtr<TextControlInnerContainer> create(Document*);
protected:
@@ -43,7 +43,7 @@ protected:
virtual RenderObject* createRenderer(RenderArena*, RenderStyle*);
};
-class TextControlInnerElement : public HTMLDivElement {
+class TextControlInnerElement FINAL : public HTMLDivElement {
public:
static PassRefPtr<TextControlInnerElement> create(Document*);
@@ -55,7 +55,7 @@ private:
virtual bool isMouseFocusable() const { return false; }
};
-class TextControlInnerTextElement : public HTMLDivElement {
+class TextControlInnerTextElement FINAL : public HTMLDivElement {
public:
static PassRefPtr<TextControlInnerTextElement> create(Document*);
@@ -68,7 +68,7 @@ private:
virtual bool isMouseFocusable() const { return false; }
};
-class SearchFieldResultsButtonElement : public HTMLDivElement {
+class SearchFieldResultsButtonElement FINAL : public HTMLDivElement {
public:
static PassRefPtr<SearchFieldResultsButtonElement> create(Document*);
@@ -81,7 +81,7 @@ private:
virtual bool isMouseFocusable() const { return false; }
};
-class SearchFieldCancelButtonElement : public HTMLDivElement {
+class SearchFieldCancelButtonElement FINAL : public HTMLDivElement {
public:
static PassRefPtr<SearchFieldCancelButtonElement> create(Document*);
@@ -99,7 +99,7 @@ private:
#if ENABLE(INPUT_SPEECH)
-class InputFieldSpeechButtonElement
+class InputFieldSpeechButtonElement FINAL
: public HTMLDivElement,
public SpeechInputListener {
public:
« no previous file with comments | « Source/core/html/shadow/SpinButtonElement.h ('k') | Source/core/html/shadow/TextFieldDecorationElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698