| Index: third_party/WebKit/Source/core/editing/commands/EditCommand.h
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/EditCommand.h b/third_party/WebKit/Source/core/editing/commands/EditCommand.h
|
| index 18a3b1197b607dddd9bc8636726236a9c55d5692..562137c66bfd10c1b9ca8293a63e42cf6f77da6d 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/EditCommand.h
|
| +++ b/third_party/WebKit/Source/core/editing/commands/EditCommand.h
|
| @@ -36,7 +36,7 @@ class CompositeEditCommand;
|
| class Document;
|
| class EditingState;
|
|
|
| -class EditCommand : public RefCountedWillBeGarbageCollectedFinalized<EditCommand> {
|
| +class EditCommand : public GarbageCollectedFinalized<EditCommand> {
|
| public:
|
| virtual ~EditCommand();
|
|
|
| @@ -71,10 +71,10 @@ protected:
|
| static bool isRenderedCharacter(const Position&);
|
|
|
| private:
|
| - RefPtrWillBeMember<Document> m_document;
|
| + Member<Document> m_document;
|
| VisibleSelection m_startingSelection;
|
| VisibleSelection m_endingSelection;
|
| - RawPtrWillBeMember<CompositeEditCommand> m_parent;
|
| + Member<CompositeEditCommand> m_parent;
|
| };
|
|
|
| enum ShouldAssumeContentIsAlwaysEditable {
|
|
|