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

Unified Diff: third_party/WebKit/Source/core/xml/DocumentXPathEvaluator.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/DocumentXPathEvaluator.h
diff --git a/third_party/WebKit/Source/core/xml/DocumentXPathEvaluator.h b/third_party/WebKit/Source/core/xml/DocumentXPathEvaluator.h
index 2887a8e48c2abffe20105f7fd4828cc915adefc6..93bc68dcf9e4f47f79822e5fb05ecadc355e1e0c 100644
--- a/third_party/WebKit/Source/core/xml/DocumentXPathEvaluator.h
+++ b/third_party/WebKit/Source/core/xml/DocumentXPathEvaluator.h
@@ -36,15 +36,15 @@ class ExceptionState;
class XPathExpression;
class XPathResult;
-class DocumentXPathEvaluator final : public GarbageCollected<DocumentXPathEvaluator>, public HeapSupplement<Document> {
+class DocumentXPathEvaluator final : public GarbageCollected<DocumentXPathEvaluator>, public Supplement<Document> {
USING_GARBAGE_COLLECTED_MIXIN(DocumentXPathEvaluator);
public:
- static DocumentXPathEvaluator& from(HeapSupplementable<Document>&);
+ static DocumentXPathEvaluator& from(Supplementable<Document>&);
- static XPathExpression* createExpression(HeapSupplementable<Document>&,
+ static XPathExpression* createExpression(Supplementable<Document>&,
const String& expression, XPathNSResolver*, ExceptionState&);
- static XPathNSResolver* createNSResolver(HeapSupplementable<Document>&, Node* nodeResolver);
- static XPathResult* evaluate(HeapSupplementable<Document>&,
+ static XPathNSResolver* createNSResolver(Supplementable<Document>&, Node* nodeResolver);
+ static XPathResult* evaluate(Supplementable<Document>&,
const String& expression, Node* contextNode, XPathNSResolver*,
unsigned short type, const ScriptValue&, ExceptionState&);

Powered by Google App Engine
This is Rietveld 408576698