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

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

Issue 1060813005: Componentization: fix SupplementTracing<0>::~SupplementTracing<0>(void) already defined. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « Source/core/xml/DocumentXPathEvaluator.cpp ('k') | Source/core/xml/DocumentXSLT.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/DocumentXSLT.h
diff --git a/Source/core/xml/DocumentXSLT.h b/Source/core/xml/DocumentXSLT.h
index 7c56efa822c7a93341e11cc4d4a1f9c56879c465..2293ce11d340c9f1472cdedf9d696ff0af965fe2 100644
--- a/Source/core/xml/DocumentXSLT.h
+++ b/Source/core/xml/DocumentXSLT.h
@@ -5,7 +5,7 @@
#ifndef DocumentXSLT_h
#define DocumentXSLT_h
-#include "core/dom/DocumentSupplementable.h"
+#include "core/dom/Document.h"
#include "platform/heap/Handle.h"
#include "wtf/RefPtr.h"
@@ -14,7 +14,7 @@ namespace blink {
class Document;
class ProcessingInstruction;
-class DocumentXSLT final : public NoBaseWillBeGarbageCollected<DocumentXSLT>, public DocumentSupplement {
+class DocumentXSLT final : public NoBaseWillBeGarbageCollected<DocumentXSLT>, public WillBeHeapSupplement<Document> {
WTF_MAKE_NONCOPYABLE(DocumentXSLT);
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DocumentXSLT);
public:
@@ -29,7 +29,7 @@ public:
m_transformSourceDocument = document;
}
- static DocumentXSLT& from(DocumentSupplementable&);
+ static DocumentXSLT& from(WillBeHeapSupplementable<Document>&);
static const char* supplementName();
// The following static methods don't use any instance of DocumentXSLT.
« no previous file with comments | « Source/core/xml/DocumentXPathEvaluator.cpp ('k') | Source/core/xml/DocumentXSLT.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698