| Index: third_party/WebKit/Source/core/dom/MutationRecord.h
|
| diff --git a/third_party/WebKit/Source/core/dom/MutationRecord.h b/third_party/WebKit/Source/core/dom/MutationRecord.h
|
| index 16e500db77fcee1cd0c992a48272bdc1ae9ae7b6..419648371f3f60dee0ef957155ddda1856961c44 100644
|
| --- a/third_party/WebKit/Source/core/dom/MutationRecord.h
|
| +++ b/third_party/WebKit/Source/core/dom/MutationRecord.h
|
| @@ -44,13 +44,13 @@ class QualifiedName;
|
| template <typename NodeType> class StaticNodeTypeList;
|
| typedef StaticNodeTypeList<Node> StaticNodeList;
|
|
|
| -class MutationRecord : public RefCountedWillBeGarbageCollectedFinalized<MutationRecord>, public ScriptWrappable {
|
| +class MutationRecord : public GarbageCollectedFinalized<MutationRecord>, public ScriptWrappable {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static PassRefPtrWillBeRawPtr<MutationRecord> createChildList(PassRefPtrWillBeRawPtr<Node> target, PassRefPtrWillBeRawPtr<StaticNodeList> added, PassRefPtrWillBeRawPtr<StaticNodeList> removed, PassRefPtrWillBeRawPtr<Node> previousSibling, PassRefPtrWillBeRawPtr<Node> nextSibling);
|
| - static PassRefPtrWillBeRawPtr<MutationRecord> createAttributes(PassRefPtrWillBeRawPtr<Node> target, const QualifiedName&, const AtomicString& oldValue);
|
| - static PassRefPtrWillBeRawPtr<MutationRecord> createCharacterData(PassRefPtrWillBeRawPtr<Node> target, const String& oldValue);
|
| - static PassRefPtrWillBeRawPtr<MutationRecord> createWithNullOldValue(PassRefPtrWillBeRawPtr<MutationRecord>);
|
| + static RawPtr<MutationRecord> createChildList(RawPtr<Node> target, RawPtr<StaticNodeList> added, RawPtr<StaticNodeList> removed, RawPtr<Node> previousSibling, RawPtr<Node> nextSibling);
|
| + static RawPtr<MutationRecord> createAttributes(RawPtr<Node> target, const QualifiedName&, const AtomicString& oldValue);
|
| + static RawPtr<MutationRecord> createCharacterData(RawPtr<Node> target, const String& oldValue);
|
| + static RawPtr<MutationRecord> createWithNullOldValue(RawPtr<MutationRecord>);
|
|
|
| MutationRecord() { }
|
|
|
|
|