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

Unified Diff: Source/core/html/HTMLInputElement.h

Issue 408883003: Remove shouldUseInputMethod (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: V2 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/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(); }

Powered by Google App Engine
This is Rietveld 408576698