| Index: third_party/WebKit/Source/core/editing/commands/InsertIntoTextNodeCommand.h
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/InsertIntoTextNodeCommand.h b/third_party/WebKit/Source/core/editing/commands/InsertIntoTextNodeCommand.h
|
| index f16ad707ff2ca5f86ae636700e0a2362b0dd5faf..b56a85d1cb688dbc4e5c48ef5b7ccc85c83b084d 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/InsertIntoTextNodeCommand.h
|
| +++ b/third_party/WebKit/Source/core/editing/commands/InsertIntoTextNodeCommand.h
|
| @@ -34,20 +34,20 @@ class Text;
|
|
|
| class InsertIntoTextNodeCommand final : public SimpleEditCommand {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<InsertIntoTextNodeCommand> create(PassRefPtrWillBeRawPtr<Text> node, unsigned offset, const String& text)
|
| + static RawPtr<InsertIntoTextNodeCommand> create(RawPtr<Text> node, unsigned offset, const String& text)
|
| {
|
| - return adoptRefWillBeNoop(new InsertIntoTextNodeCommand(node, offset, text));
|
| + return (new InsertIntoTextNodeCommand(node, offset, text));
|
| }
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| private:
|
| - InsertIntoTextNodeCommand(PassRefPtrWillBeRawPtr<Text> node, unsigned offset, const String& text);
|
| + InsertIntoTextNodeCommand(RawPtr<Text> node, unsigned offset, const String& text);
|
|
|
| void doApply() override;
|
| void doUnapply() override;
|
|
|
| - RefPtrWillBeMember<Text> m_node;
|
| + Member<Text> m_node;
|
| unsigned m_offset;
|
| String m_text;
|
| };
|
|
|