Index: Source/core/html/shadow/TextControlInnerElements.h |
diff --git a/Source/core/html/shadow/TextControlInnerElements.h b/Source/core/html/shadow/TextControlInnerElements.h |
index 7a74919ea43b27d5aa1955467a2f6b7afea3e62d..eb13c574537427621e8a4d6b90e634601ee27c42 100644 |
--- a/Source/core/html/shadow/TextControlInnerElements.h |
+++ b/Source/core/html/shadow/TextControlInnerElements.h |
@@ -91,7 +91,7 @@ public: |
private: |
SearchFieldCancelButtonElement(Document*); |
virtual const AtomicString& shadowPseudoId() const; |
- virtual void detach(); |
+ virtual void detach(const AttachContext& = AttachContext()) OVERRIDE; |
virtual bool isMouseFocusable() const { return false; } |
bool m_capturing; |
@@ -112,7 +112,7 @@ public: |
static PassRefPtr<InputFieldSpeechButtonElement> create(Document*); |
virtual ~InputFieldSpeechButtonElement(); |
- virtual void detach(); |
+ virtual void detach(const AttachContext& = AttachContext()) OVERRIDE; |
virtual void defaultEventHandler(Event*); |
virtual bool willRespondToMouseClickEvents(); |
virtual bool isInputFieldSpeechButtonElement() const { return true; } |
@@ -131,7 +131,7 @@ private: |
void setState(SpeechInputState state); |
virtual const AtomicString& shadowPseudoId() const; |
virtual bool isMouseFocusable() const { return false; } |
- virtual void attach(); |
+ virtual void attach(const AttachContext& = AttachContext()) OVERRIDE; |
bool m_capturing; |
SpeechInputState m_state; |