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

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

Issue 698923002: Enable Oilpan for core/xml/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Non-Oilpan fixes Created 6 years, 1 month 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 d4c5d67fb05756b0b93726e1a6b5b27d82fdcbfa..22c829f9ea6665ecf8331dd8eff7244b23262fad 100644
--- a/Source/core/xml/XSLImportRule.h
+++ b/Source/core/xml/XSLImportRule.h
@@ -32,13 +32,12 @@ namespace blink {
class XSLStyleSheetResource;
-class XSLImportRule final : public NoBaseWillBeGarbageCollectedFinalized<XSLImportRule> {
- WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
+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