Index: Source/core/html/HTMLInputElement.h |
diff --git a/Source/core/html/HTMLInputElement.h b/Source/core/html/HTMLInputElement.h |
index 162a12531c003a6aa0d44ae4b00356cb92356700..97c1a286ea15d13905016c722f5d20620bfab23c 100644 |
--- a/Source/core/html/HTMLInputElement.h |
+++ b/Source/core/html/HTMLInputElement.h |
@@ -229,7 +229,7 @@ public: |
bool valueAttributeWasUpdatedAfterParsing() const { return m_valueAttributeWasUpdatedAfterParsing; } |
void updateView(); |
bool needsToUpdateViewValue() const { return m_needsToUpdateViewValue; } |
- virtual void setInnerTextValue(const String&) OVERRIDE; |
+ virtual void setInnerEditorValue(const String&) OVERRIDE; |
void cacheSelectionInResponseToSetValue(int caretOffset) { cacheSelection(caretOffset, caretOffset, SelectionHasNoDirection); } |
@@ -341,7 +341,7 @@ private: |
virtual bool supportsPlaceholder() const OVERRIDE FINAL; |
virtual void updatePlaceholderText() OVERRIDE FINAL; |
- virtual bool isEmptyValue() const OVERRIDE FINAL { return innerTextValue().isEmpty(); } |
+ virtual bool isEmptyValue() const OVERRIDE FINAL { return innerEditorValue().isEmpty(); } |
virtual bool isEmptySuggestedValue() const OVERRIDE FINAL { return suggestedValue().isEmpty(); } |
virtual void handleFocusEvent(Element* oldFocusedElement, FocusType) OVERRIDE FINAL; |
virtual void handleBlurEvent() OVERRIDE FINAL; |