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

Unified Diff: third_party/WebKit/Source/core/xml/DOMParser.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/xml/DOMParser.h
diff --git a/third_party/WebKit/Source/core/xml/DOMParser.h b/third_party/WebKit/Source/core/xml/DOMParser.h
index 34074da7f2e5361d6b0aa26984509e98063c8f45..76e571858ce9aea220dfd265fa860a1a0ac32f6b 100644
--- a/third_party/WebKit/Source/core/xml/DOMParser.h
+++ b/third_party/WebKit/Source/core/xml/DOMParser.h
@@ -35,14 +35,14 @@ public:
return new DOMParser(document);
}
- PassRefPtrWillBeRawPtr<Document> parseFromString(const String&, const String& type);
+ RawPtr<Document> parseFromString(const String&, const String& type);
DECLARE_TRACE();
private:
explicit DOMParser(Document&);
- WeakPtrWillBeWeakMember<Document> m_contextDocument;
+ WeakMember<Document> m_contextDocument;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/workers/WorkerThreadTestHelper.h ('k') | third_party/WebKit/Source/core/xml/DOMParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698