Index: Source/core/html/HTMLTextAreaElement.h |
diff --git a/Source/core/html/HTMLTextAreaElement.h b/Source/core/html/HTMLTextAreaElement.h |
index 7d369ece6e5fde70959b7ab755352060b5151db6..ebc3f78d7d4d1ae46532598ef4b67c398b52bc84 100644 |
--- a/Source/core/html/HTMLTextAreaElement.h |
+++ b/Source/core/html/HTMLTextAreaElement.h |
@@ -42,7 +42,7 @@ public: |
bool shouldWrapText() const { return m_wrap != NoWrap; } |
virtual String value() const OVERRIDE; |
- void setValue(const String&); |
+ void setValue(const String&, TextFieldEventBehavior = DispatchNoEvent); |
String defaultValue() const; |
void setDefaultValue(const String&); |
int textLength() const { return value().length(); } |
@@ -75,7 +75,7 @@ private: |
static String sanitizeUserInputValue(const String&, unsigned maxLength); |
void updateValue() const; |
void setNonDirtyValue(const String&); |
- void setValueCommon(const String&); |
+ void setValueCommon(const String&, TextFieldEventBehavior); |
virtual bool supportsPlaceholder() const OVERRIDE { return true; } |
virtual void updatePlaceholderText() OVERRIDE; |