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

Unified Diff: Source/core/html/forms/TextFieldInputType.h

Issue 406523002: Oilpan: Make sure that vtables for garbage collected mixin objects have (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix non-oilpan compilation Created 6 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
Index: Source/core/html/forms/TextFieldInputType.h
diff --git a/Source/core/html/forms/TextFieldInputType.h b/Source/core/html/forms/TextFieldInputType.h
index 0eb1fda2d4c9eea5e1180696753a1fb72a288eac..769c5e751aed8b1224eedc427be6e408e6e2da7c 100644
--- a/Source/core/html/forms/TextFieldInputType.h
+++ b/Source/core/html/forms/TextFieldInputType.h
@@ -42,6 +42,9 @@ class FormDataList;
// It supports not only the types for BaseTextInputType but also type=number.
class TextFieldInputType : public InputType, protected SpinButtonElement::SpinButtonOwner {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(TextFieldInputType);
+public:
+ virtual void trace(Visitor* visitor) OVERRIDE { InputType::trace(visitor); }
+
protected:
TextFieldInputType(HTMLInputElement&);
virtual ~TextFieldInputType();
@@ -49,7 +52,6 @@ protected:
virtual void handleKeydownEvent(KeyboardEvent*) OVERRIDE;
void handleKeydownEventForSpinButton(KeyboardEvent*);
-protected:
virtual bool needsContainer() const { return false; }
bool shouldHaveSpinButton() const;
virtual void createShadowSubtree() OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698