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

Unified Diff: third_party/WebKit/Source/core/xml/DocumentXSLT.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/DocumentXSLT.h
diff --git a/third_party/WebKit/Source/core/xml/DocumentXSLT.h b/third_party/WebKit/Source/core/xml/DocumentXSLT.h
index 85fb99c65169b7d917908862cb03159ee9ad6799..bc6e2006fc70d89e046fcab4e0389d28bbfec710 100644
--- a/third_party/WebKit/Source/core/xml/DocumentXSLT.h
+++ b/third_party/WebKit/Source/core/xml/DocumentXSLT.h
@@ -14,10 +14,9 @@ namespace blink {
class Document;
class ProcessingInstruction;
-class DocumentXSLT final : public NoBaseWillBeGarbageCollected<DocumentXSLT>, public WillBeHeapSupplement<Document> {
+class DocumentXSLT final : public GarbageCollected<DocumentXSLT>, public HeapSupplement<Document> {
WTF_MAKE_NONCOPYABLE(DocumentXSLT);
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DocumentXSLT);
- USING_FAST_MALLOC_WILL_BE_REMOVED(DocumentXSLT);
+ USING_GARBAGE_COLLECTED_MIXIN(DocumentXSLT);
public:
Document* transformSourceDocument()
{
@@ -30,7 +29,7 @@ public:
m_transformSourceDocument = document;
}
- static DocumentXSLT& from(WillBeHeapSupplementable<Document>&);
+ static DocumentXSLT& from(HeapSupplementable<Document>&);
static const char* supplementName();
// The following static methods don't use any instance of DocumentXSLT.
@@ -47,7 +46,7 @@ public:
private:
DocumentXSLT();
- RefPtrWillBeMember<Document> m_transformSourceDocument;
+ Member<Document> m_transformSourceDocument;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/xml/DocumentXPathEvaluator.cpp ('k') | third_party/WebKit/Source/core/xml/DocumentXSLT.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698