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

Unified Diff: third_party/WebKit/Source/core/html/HTMLTextAreaElement.h

Issue 2803483005: Remove lazy evaluation of HTMLTextAreaElement::value. (Closed)
Patch Set: Created 3 years, 8 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 | « no previous file | third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/html/HTMLTextAreaElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLTextAreaElement.h b/third_party/WebKit/Source/core/html/HTMLTextAreaElement.h
index 6e80038dc1886b4596e8b112f7348d8803444f2f..b7430fba15970f56e3322f6907037fbd51e170de 100644
--- a/third_party/WebKit/Source/core/html/HTMLTextAreaElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLTextAreaElement.h
@@ -78,8 +78,7 @@ class CORE_EXPORT HTMLTextAreaElement final : public TextControlElement {
void handleBeforeTextInsertedEvent(BeforeTextInsertedEvent*) const;
static String sanitizeUserInputValue(const String&, unsigned maxLength);
- void updateValue() const;
- void setInnerEditorValue(const String&) override;
+ void updateValue();
void setNonDirtyValue(const String&);
void setValueCommon(const String&,
TextFieldEventBehavior,
@@ -148,7 +147,6 @@ class CORE_EXPORT HTMLTextAreaElement final : public TextControlElement {
WrapMethod m_wrap;
mutable String m_value;
mutable bool m_isDirty;
- bool m_valueIsUpToDate;
unsigned m_isPlaceholderVisible : 1;
String m_suggestedValue;
};
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698