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

Unified Diff: Source/core/xml/XMLSerializer.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/NativeXPathNSResolver.h ('k') | Source/core/xml/XMLSerializer.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XMLSerializer.h
diff --git a/Source/core/xml/XMLSerializer.h b/Source/core/xml/XMLSerializer.h
index 38b3131d034b78981c7a1c439eddb51fe9b9d448..edd8b81f70f97061431c45838d02b531ff79c5a4 100644
--- a/Source/core/xml/XMLSerializer.h
+++ b/Source/core/xml/XMLSerializer.h
@@ -22,21 +22,18 @@
#include "bindings/core/v8/ScriptWrappable.h"
#include "platform/heap/Handle.h"
-#include "wtf/Forward.h"
-#include "wtf/PassRefPtr.h"
-#include "wtf/RefCounted.h"
namespace blink {
class ExceptionState;
class Node;
-class XMLSerializer final : public RefCountedWillBeGarbageCollected<XMLSerializer>, public ScriptWrappable {
+class XMLSerializer final : public GarbageCollected<XMLSerializer>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<XMLSerializer> create()
+ static XMLSerializer* create()
{
- return adoptRefWillBeNoop(new XMLSerializer);
+ return new XMLSerializer;
}
String serializeToString(Node*, ExceptionState&);
« no previous file with comments | « Source/core/xml/NativeXPathNSResolver.h ('k') | Source/core/xml/XMLSerializer.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698