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

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

Issue 1099613003: Oilpan: have xml/ objects on the heap by default. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: simplify XPathResult dtor 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/XPathValue.cpp ('k') | Source/core/xml/XSLStyleSheet.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XSLImportRule.h
diff --git a/Source/core/xml/XSLImportRule.h b/Source/core/xml/XSLImportRule.h
index 388f91aa1fa55ab9d267d470f9fe556db9209b13..e9f70fed1469bfc1fd067906bc7f384e114592fb 100644
--- a/Source/core/xml/XSLImportRule.h
+++ b/Source/core/xml/XSLImportRule.h
@@ -30,13 +30,12 @@
namespace blink {
-class XSLImportRule final : public NoBaseWillBeGarbageCollectedFinalized<XSLImportRule> {
- WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(XSLImportRule);
+class XSLImportRule final : public GarbageCollectedFinalized<XSLImportRule> {
public:
- static PassOwnPtrWillBeRawPtr<XSLImportRule> create(XSLStyleSheet* parentSheet, const String& href)
+ static XSLImportRule* create(XSLStyleSheet* parentSheet, const String& href)
{
ASSERT(RuntimeEnabledFeatures::xsltEnabled());
- return adoptPtrWillBeNoop(new XSLImportRule(parentSheet, href));
+ return new XSLImportRule(parentSheet, href);
}
virtual ~XSLImportRule();
« no previous file with comments | « Source/core/xml/XPathValue.cpp ('k') | Source/core/xml/XSLStyleSheet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698