| 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;
|
| };
|
|
|