| Index: third_party/WebKit/Source/core/editing/commands/ApplyStyleCommand.h
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/ApplyStyleCommand.h b/third_party/WebKit/Source/core/editing/commands/ApplyStyleCommand.h
|
| index 036b8b65651614a2d0d5d5c23e002e486dbf1037..fb48a1b811d16c83d721ece887068e82e3d816a6 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/ApplyStyleCommand.h
|
| +++ b/third_party/WebKit/Source/core/editing/commands/ApplyStyleCommand.h
|
| @@ -46,10 +46,11 @@ class CORE_EXPORT ApplyStyleCommand final : public CompositeEditCommand {
|
| typedef bool (*IsInlineElementToRemoveFunction)(const Element*);
|
|
|
| static ApplyStyleCommand* create(Document& document,
|
| + EditCommandSource source,
|
| const EditingStyle* style,
|
| InputEvent::InputType inputType,
|
| EPropertyLevel level = PropertyDefault) {
|
| - return new ApplyStyleCommand(document, style, inputType, level);
|
| + return new ApplyStyleCommand(document, source, style, inputType, level);
|
| }
|
| static ApplyStyleCommand* create(Document& document,
|
| const EditingStyle* style,
|
| @@ -73,6 +74,7 @@ class CORE_EXPORT ApplyStyleCommand final : public CompositeEditCommand {
|
|
|
| private:
|
| ApplyStyleCommand(Document&,
|
| + EditCommandSource,
|
| const EditingStyle*,
|
| InputEvent::InputType,
|
| EPropertyLevel);
|
|
|