| Index: third_party/WebKit/Source/core/editing/Editor.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/Editor.cpp b/third_party/WebKit/Source/core/editing/Editor.cpp
|
| index 4bf340fd5f88a108d11159655cef891e15700d7c..11fe06da1eeffcc61c7e8c1ac479dd7da389a25b 100644
|
| --- a/third_party/WebKit/Source/core/editing/Editor.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/Editor.cpp
|
| @@ -1074,8 +1074,9 @@ void Editor::cut(EditorCommandSource source) {
|
| if (enclosingTextControl(frame().selection().start())) {
|
| String plainText = frame().selectedTextForClipboard();
|
| Pasteboard::generalPasteboard()->writePlainText(
|
| - plainText, canSmartCopyOrDelete() ? Pasteboard::CanSmartReplace
|
| - : Pasteboard::CannotSmartReplace);
|
| + plainText,
|
| + canSmartCopyOrDelete() ? Pasteboard::CanSmartReplace
|
| + : Pasteboard::CannotSmartReplace);
|
| } else {
|
| writeSelectionToPasteboard();
|
| }
|
|
|