| Index: Source/core/html/HTMLInputElement.h
|
| diff --git a/Source/core/html/HTMLInputElement.h b/Source/core/html/HTMLInputElement.h
|
| index 70187e4b32fa9bb971e15bebea12c82389a4c071..60de03799f3424ecee6d65b9f616bde2533280d2 100644
|
| --- a/Source/core/html/HTMLInputElement.h
|
| +++ b/Source/core/html/HTMLInputElement.h
|
| @@ -255,7 +255,6 @@ public:
|
| // Functions for InputType classes.
|
| void setValueInternal(const String&, TextFieldEventBehavior);
|
| bool isTextFormControlKeyboardFocusable(KeyboardEvent*) const;
|
| - bool isTextFormControlMouseFocusable() const;
|
| bool valueAttributeWasUpdatedAfterParsing() const { return m_valueAttributeWasUpdatedAfterParsing; }
|
|
|
| void cacheSelectionInResponseToSetValue(int caretOffset) { cacheSelection(caretOffset, caretOffset, SelectionHasNoDirection); }
|
| @@ -321,7 +320,7 @@ private:
|
|
|
| virtual bool hasCustomFocusLogic() const OVERRIDE;
|
| virtual bool isKeyboardFocusable(KeyboardEvent*) const;
|
| - virtual bool isMouseFocusable() const;
|
| + virtual bool shouldShowFocusRingOnMouseFocus() const OVERRIDE;
|
| virtual bool isEnumeratable() const;
|
| virtual bool supportLabels() const OVERRIDE;
|
| virtual void updateFocusAppearance(bool restorePreviousSelection);
|
|
|