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

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, 9 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 abbf48dfb2bb5dce061f5d5923df44ec3c76a015..58b48b5cdaf7c4fa30f3f08169d7f228831818dd 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();
@@ -112,9 +112,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
« no previous file with comments | « third_party/WebKit/Source/core/dom/DocumentOrderedMap.cpp ('k') | third_party/WebKit/Source/core/dom/DocumentParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698