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

Unified Diff: third_party/WebKit/Source/core/xml/DocumentXPathEvaluator.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/DocumentXPathEvaluator.h
diff --git a/third_party/WebKit/Source/core/xml/DocumentXPathEvaluator.h b/third_party/WebKit/Source/core/xml/DocumentXPathEvaluator.h
index 62e4cc19ea6cbb9d8ca0e7321d5a3252d2c8c647..2887a8e48c2abffe20105f7fd4828cc915adefc6 100644
--- a/third_party/WebKit/Source/core/xml/DocumentXPathEvaluator.h
+++ b/third_party/WebKit/Source/core/xml/DocumentXPathEvaluator.h
@@ -36,16 +36,15 @@ class ExceptionState;
class XPathExpression;
class XPathResult;
-class DocumentXPathEvaluator final : public NoBaseWillBeGarbageCollected<DocumentXPathEvaluator>, public WillBeHeapSupplement<Document> {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DocumentXPathEvaluator);
- USING_FAST_MALLOC_WILL_BE_REMOVED(DocumentXPathEvaluator);
+class DocumentXPathEvaluator final : public GarbageCollected<DocumentXPathEvaluator>, public HeapSupplement<Document> {
+ USING_GARBAGE_COLLECTED_MIXIN(DocumentXPathEvaluator);
public:
- static DocumentXPathEvaluator& from(WillBeHeapSupplementable<Document>&);
+ static DocumentXPathEvaluator& from(HeapSupplementable<Document>&);
- static XPathExpression* createExpression(WillBeHeapSupplementable<Document>&,
+ static XPathExpression* createExpression(HeapSupplementable<Document>&,
const String& expression, XPathNSResolver*, ExceptionState&);
- static XPathNSResolver* createNSResolver(WillBeHeapSupplementable<Document>&, Node* nodeResolver);
- static XPathResult* evaluate(WillBeHeapSupplementable<Document>&,
+ static XPathNSResolver* createNSResolver(HeapSupplementable<Document>&, Node* nodeResolver);
+ static XPathResult* evaluate(HeapSupplementable<Document>&,
const String& expression, Node* contextNode, XPathNSResolver*,
unsigned short type, const ScriptValue&, ExceptionState&);
@@ -56,7 +55,7 @@ private:
static const char* supplementName() { return "DocumentXPathEvaluator"; }
- PersistentWillBeMember<XPathEvaluator> m_xpathEvaluator;
+ Member<XPathEvaluator> m_xpathEvaluator;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/xml/DOMParser.cpp ('k') | third_party/WebKit/Source/core/xml/DocumentXPathEvaluator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698