| Index: third_party/WebKit/Source/core/dom/DocumentParser.h
|
| diff --git a/third_party/WebKit/Source/core/dom/DocumentParser.h b/third_party/WebKit/Source/core/dom/DocumentParser.h
|
| index b5ff387f057b2073addf4cd940e372f4a6f007cc..7c333895a16a03e4899293cd763bc36051b1bf06 100644
|
| --- a/third_party/WebKit/Source/core/dom/DocumentParser.h
|
| +++ b/third_party/WebKit/Source/core/dom/DocumentParser.h
|
| @@ -36,7 +36,7 @@ class SegmentedString;
|
| class ScriptableDocumentParser;
|
| class TextResourceDecoder;
|
|
|
| -class DocumentParser : public RefCountedWillBeGarbageCollectedFinalized<DocumentParser> {
|
| +class DocumentParser : public GarbageCollectedFinalized<DocumentParser> {
|
| public:
|
| virtual ~DocumentParser();
|
| DECLARE_VIRTUAL_TRACE();
|
| @@ -117,9 +117,9 @@ private:
|
|
|
| // Every DocumentParser needs a pointer back to the document.
|
| // m_document will be 0 after the parser is stopped.
|
| - RawPtrWillBeMember<Document> m_document;
|
| + Member<Document> m_document;
|
|
|
| - WillBeHeapHashSet<RawPtrWillBeWeakMember<DocumentParserClient>> m_clients;
|
| + HeapHashSet<WeakMember<DocumentParserClient>> m_clients;
|
| };
|
|
|
| } // namespace blink
|
|
|