| Index: third_party/WebKit/Source/core/editing/commands/UnlinkCommand.h
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/UnlinkCommand.h b/third_party/WebKit/Source/core/editing/commands/UnlinkCommand.h
|
| index 91f6e42c135a8e2ec00b3f1cbe8600e2343fa61a..620a67b16e666fb31cb8a3be8a1326ec788f4bba 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/UnlinkCommand.h
|
| +++ b/third_party/WebKit/Source/core/editing/commands/UnlinkCommand.h
|
| @@ -32,12 +32,12 @@ namespace blink {
|
|
|
| class UnlinkCommand final : public CompositeEditCommand {
|
| public:
|
| - static UnlinkCommand* create(Document& document) {
|
| - return new UnlinkCommand(document);
|
| + static UnlinkCommand* create(Document& document, EditCommandSource source) {
|
| + return new UnlinkCommand(document, source);
|
| }
|
|
|
| private:
|
| - explicit UnlinkCommand(Document&);
|
| + UnlinkCommand(Document&, EditCommandSource);
|
|
|
| void doApply(EditingState*) override;
|
| };
|
|
|