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

Unified Diff: Source/core/dom/XMLDocument.h

Issue 324073002: Oilpan: Switch RefCountedGarbageCollected to GarbageCollectedFinalized for Node. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase and update Node base class list Created 6 years, 6 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/dom/Text.cpp ('k') | Source/core/dom/shadow/ShadowRoot.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/XMLDocument.h
diff --git a/Source/core/dom/XMLDocument.h b/Source/core/dom/XMLDocument.h
index 2ff572d81ee0ba6fc78574ba799870de1897a5e1..b1843440fa52ec3378327f3a271c60f0ccaabb7c 100644
--- a/Source/core/dom/XMLDocument.h
+++ b/Source/core/dom/XMLDocument.h
@@ -35,17 +35,17 @@ class XMLDocument FINAL : public Document {
public:
static PassRefPtrWillBeRawPtr<XMLDocument> create(const DocumentInit& initializer = DocumentInit())
{
- return adoptRefWillBeRefCountedGarbageCollected(new XMLDocument(initializer, XMLDocumentClass));
+ return adoptRefWillBeNoop(new XMLDocument(initializer, XMLDocumentClass));
}
static PassRefPtrWillBeRawPtr<XMLDocument> createXHTML(const DocumentInit& initializer = DocumentInit())
{
- return adoptRefWillBeRefCountedGarbageCollected(new XMLDocument(initializer, XMLDocumentClass | XHTMLDocumentClass));
+ return adoptRefWillBeNoop(new XMLDocument(initializer, XMLDocumentClass | XHTMLDocumentClass));
}
static PassRefPtrWillBeRawPtr<XMLDocument> createSVG(const DocumentInit& initializer = DocumentInit())
{
- return adoptRefWillBeRefCountedGarbageCollected(new XMLDocument(initializer, XMLDocumentClass | SVGDocumentClass));
+ return adoptRefWillBeNoop(new XMLDocument(initializer, XMLDocumentClass | SVGDocumentClass));
}
protected:
« no previous file with comments | « Source/core/dom/Text.cpp ('k') | Source/core/dom/shadow/ShadowRoot.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698