Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(101)

Unified Diff: third_party/WebKit/Source/core/dom/DocumentParser.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698