| Index: third_party/WebKit/Source/core/editing/commands/MoveSelectionCommand.h
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/MoveSelectionCommand.h b/third_party/WebKit/Source/core/editing/commands/MoveSelectionCommand.h
|
| index 806a9c0966496f57d0206ab7e23ab3e87f143f99..a4e07a1bfa52c267601351b38d19510b7db868e9 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/MoveSelectionCommand.h
|
| +++ b/third_party/WebKit/Source/core/editing/commands/MoveSelectionCommand.h
|
| @@ -34,20 +34,20 @@ class DocumentFragment;
|
|
|
| class MoveSelectionCommand final : public CompositeEditCommand {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<MoveSelectionCommand> create(PassRefPtrWillBeRawPtr<DocumentFragment> fragment, const Position& position, bool smartInsert = false, bool smartDelete = false)
|
| + static RawPtr<MoveSelectionCommand> create(RawPtr<DocumentFragment> fragment, const Position& position, bool smartInsert = false, bool smartDelete = false)
|
| {
|
| - return adoptRefWillBeNoop(new MoveSelectionCommand(fragment, position, smartInsert, smartDelete));
|
| + return (new MoveSelectionCommand(fragment, position, smartInsert, smartDelete));
|
| }
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| private:
|
| - MoveSelectionCommand(PassRefPtrWillBeRawPtr<DocumentFragment>, const Position&, bool smartInsert, bool smartDelete);
|
| + MoveSelectionCommand(RawPtr<DocumentFragment>, const Position&, bool smartInsert, bool smartDelete);
|
|
|
| void doApply() override;
|
| EditAction editingAction() const override;
|
|
|
| - RefPtrWillBeMember<DocumentFragment> m_fragment;
|
| + Member<DocumentFragment> m_fragment;
|
| Position m_position;
|
| bool m_smartInsert;
|
| bool m_smartDelete;
|
|
|