| Index: third_party/WebKit/Source/core/editing/commands/DeleteSelectionCommand.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/DeleteSelectionCommand.cpp b/third_party/WebKit/Source/core/editing/commands/DeleteSelectionCommand.cpp
|
| index 028d0fb5d524f8d4873d2d2c038af0d6c9eab5d6..b5acda2d6e244299fe1f54ce637b1745e4f73349 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/DeleteSelectionCommand.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/commands/DeleteSelectionCommand.cpp
|
| @@ -66,13 +66,14 @@ static bool isTableRowEmpty(Node* row) {
|
|
|
| DeleteSelectionCommand::DeleteSelectionCommand(
|
| Document& document,
|
| + EditCommandSource source,
|
| bool smartDelete,
|
| bool mergeBlocksAfterDelete,
|
| bool expandForSpecialElements,
|
| bool sanitizeMarkup,
|
| InputEvent::InputType inputType,
|
| const Position& referenceMovePosition)
|
| - : CompositeEditCommand(document),
|
| + : CompositeEditCommand(document, source),
|
| m_hasSelectionToDelete(false),
|
| m_smartDelete(smartDelete),
|
| m_mergeBlocksAfterDelete(mergeBlocksAfterDelete),
|
|
|