| Index: third_party/WebKit/Source/core/editing/Editor.h
|
| diff --git a/third_party/WebKit/Source/core/editing/Editor.h b/third_party/WebKit/Source/core/editing/Editor.h
|
| index 7e39bb99a54ccbbbb6ea46f99d797d6d0840cfea..fd0fb01c3fa430bdb883e358ce350e1e238a7eb3 100644
|
| --- a/third_party/WebKit/Source/core/editing/Editor.h
|
| +++ b/third_party/WebKit/Source/core/editing/Editor.h
|
| @@ -186,9 +186,11 @@ class CORE_EXPORT Editor final : public GarbageCollectedFinalized<Editor> {
|
| bool executeCommand(const String& commandName, const String& value);
|
|
|
| bool insertText(const String&, KeyboardEvent* triggeringEvent);
|
| - bool insertTextWithoutSendingTextEvent(const String&,
|
| - bool selectInsertedText,
|
| - TextEvent* triggeringEvent);
|
| + bool insertTextWithoutSendingTextEvent(
|
| + const String&,
|
| + bool selectInsertedText,
|
| + TextEvent* triggeringEvent,
|
| + InputEvent::InputType = InputEvent::InputType::InsertText);
|
| bool insertLineBreak();
|
| bool insertParagraphSeparator();
|
|
|
|
|