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

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

Issue 340273003: Rename innerTextElement/Value used in <input> and <textarea> to innerEditor. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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
« no previous file with comments | « Source/core/editing/SpellChecker.cpp ('k') | Source/core/html/HTMLInputElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « Source/core/editing/SpellChecker.cpp ('k') | Source/core/html/HTMLInputElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698