| Index: Source/core/html/shadow/TextControlInnerElements.h
|
| diff --git a/Source/core/html/shadow/TextControlInnerElements.h b/Source/core/html/shadow/TextControlInnerElements.h
|
| index d4dd989735bc00c812d963001426aa1b8bf1ef07..78ad561b49da932ac88387e96230e9cb926f0008 100644
|
| --- a/Source/core/html/shadow/TextControlInnerElements.h
|
| +++ b/Source/core/html/shadow/TextControlInnerElements.h
|
| @@ -90,7 +90,7 @@ public:
|
|
|
| private:
|
| SearchFieldCancelButtonElement(Document*);
|
| - virtual void detach();
|
| + virtual void detach(const AttachContext& = AttachContext()) OVERRIDE;
|
| virtual bool isMouseFocusable() const { return false; }
|
|
|
| bool m_capturing;
|
| @@ -111,7 +111,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; }
|
| @@ -129,7 +129,7 @@ private:
|
| SpeechInput* speechInput();
|
| void setState(SpeechInputState state);
|
| virtual bool isMouseFocusable() const { return false; }
|
| - virtual void attach();
|
| + virtual void attach(const AttachContext& = AttachContext()) OVERRIDE;
|
|
|
| bool m_capturing;
|
| SpeechInputState m_state;
|
|
|