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

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: Make test wrapper class finalized 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
« no previous file with comments | « Source/core/page/PageSerializer.cpp ('k') | Source/wtf/VectorTraits.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « Source/core/page/PageSerializer.cpp ('k') | Source/wtf/VectorTraits.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698