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

Unified Diff: third_party/WebKit/Source/core/xml/DocumentXSLT.h

Issue 1851743002: Simplify Supplementables post Oilpan. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix component build 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 bc6e2006fc70d89e046fcab4e0389d28bbfec710..952ad957ade0a1095cb82bfaf89584d443439823 100644
--- a/third_party/WebKit/Source/core/xml/DocumentXSLT.h
+++ b/third_party/WebKit/Source/core/xml/DocumentXSLT.h
@@ -14,7 +14,7 @@ namespace blink {
class Document;
class ProcessingInstruction;
-class DocumentXSLT final : public GarbageCollected<DocumentXSLT>, public HeapSupplement<Document> {
+class DocumentXSLT final : public GarbageCollected<DocumentXSLT>, public Supplement<Document> {
WTF_MAKE_NONCOPYABLE(DocumentXSLT);
USING_GARBAGE_COLLECTED_MIXIN(DocumentXSLT);
public:
@@ -29,7 +29,7 @@ public:
m_transformSourceDocument = document;
}
- static DocumentXSLT& from(HeapSupplementable<Document>&);
+ static DocumentXSLT& from(Supplementable<Document>&);
static const char* supplementName();
// The following static methods don't use any instance of DocumentXSLT.
« 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