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

Unified Diff: Source/core/xml/XMLSerializer.cpp

Issue 299353004: Oilpan: move editing objects to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add WTF_ALLOW_INIT_WITH_MEM_FUNCTIONS() and make use of it Created 6 years, 7 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: Source/core/xml/XMLSerializer.cpp
diff --git a/Source/core/xml/XMLSerializer.cpp b/Source/core/xml/XMLSerializer.cpp
index 11e9cd628717a101f06e7bd456ae5a3bb4032825..93aba3794a65529ae85d09934eeff31f3d309f64 100644
--- a/Source/core/xml/XMLSerializer.cpp
+++ b/Source/core/xml/XMLSerializer.cpp
@@ -36,7 +36,7 @@ String XMLSerializer::serializeToString(Node* node, ExceptionState& exceptionSta
return String();
}
- MarkupAccumulator accumulator(0, DoNotResolveURLs, 0, ForcedXML);
+ MarkupAccumulator accumulator(0, DoNotResolveURLs, nullptr, ForcedXML);
return accumulator.serializeNodes(*node, IncludeNode);
}

Powered by Google App Engine
This is Rietveld 408576698