Index: Source/core/html/HTMLInputElement.h |
diff --git a/Source/core/html/HTMLInputElement.h b/Source/core/html/HTMLInputElement.h |
index af8ffba811b914cb7bfdb4175fe202f08533a584..40a2847a91ccf32e0de14ee19ac9932abb4276c7 100644 |
--- a/Source/core/html/HTMLInputElement.h |
+++ b/Source/core/html/HTMLInputElement.h |
@@ -269,6 +269,8 @@ public: |
void setShouldRevealPassword(bool value); |
bool shouldRevealPassword() const { return m_shouldRevealPassword; } |
+ bool shouldUseInputMethod(); |
adamk
2014/07/22 01:10:07
Can't this method (and all the input type methods
|
+ |
protected: |
HTMLInputElement(Document&, HTMLFormElement*, bool createdByParser); |
@@ -293,7 +295,6 @@ private: |
virtual bool isEnumeratable() const OVERRIDE FINAL; |
virtual bool isInteractiveContent() const OVERRIDE FINAL; |
virtual bool supportLabels() const OVERRIDE FINAL; |
- virtual bool shouldUseInputMethod() OVERRIDE FINAL; |
virtual bool isTextFormControl() const OVERRIDE FINAL { return isTextField(); } |