Index: third_party/WebKit/Source/core/events/TextEvent.h |
diff --git a/third_party/WebKit/Source/core/events/TextEvent.h b/third_party/WebKit/Source/core/events/TextEvent.h |
index 65d56b218bb707805172bc70cb7a09083e6f723a..38af69b41cedac0ff670829a44f400064c0c57c7 100644 |
--- a/third_party/WebKit/Source/core/events/TextEvent.h |
+++ b/third_party/WebKit/Source/core/events/TextEvent.h |
@@ -69,6 +69,9 @@ class TextEvent final : public UIEvent { |
} |
bool isPaste() const { return m_inputType == TextEventInputPaste; } |
bool isDrop() const { return m_inputType == TextEventInputDrop; } |
+ bool isIncrementalInsertion() const { |
+ return m_inputType == TextEventInputIncrementalInsertion; |
+ } |
bool shouldSmartReplace() const { return m_shouldSmartReplace; } |
bool shouldMatchStyle() const { return m_shouldMatchStyle; } |