aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/xml
diff options
context:
space:
mode:
Diffstat (limited to 'src/xml')
-rw-r--r--src/xml/SkDOM.cpp3
-rw-r--r--src/xml/SkXMLParser.cpp4
-rw-r--r--src/xml/SkXMLWriter.cpp2
3 files changed, 7 insertions, 2 deletions
diff --git a/src/xml/SkDOM.cpp b/src/xml/SkDOM.cpp
index 2e37dd7807..e6c343515f 100644
--- a/src/xml/SkDOM.cpp
+++ b/src/xml/SkDOM.cpp
@@ -5,9 +5,10 @@
* found in the LICENSE file.
*/
-
#include "SkDOM.h"
+
#include "SkStream.h"
+#include "SkTo.h"
#include "SkXMLParser.h"
#include "SkXMLWriter.h"
diff --git a/src/xml/SkXMLParser.cpp b/src/xml/SkXMLParser.cpp
index 23c4e672b5..36e1ab3ea0 100644
--- a/src/xml/SkXMLParser.cpp
+++ b/src/xml/SkXMLParser.cpp
@@ -5,12 +5,14 @@
* found in the LICENSE file.
*/
+#include "SkXMLParser.h"
+
#include "expat.h"
#include "SkStream.h"
#include "SkString.h"
+#include "SkTo.h"
#include "SkTypes.h"
-#include "SkXMLParser.h"
static char const* const gErrorStrings[] = {
"empty or missing file ",
diff --git a/src/xml/SkXMLWriter.cpp b/src/xml/SkXMLWriter.cpp
index 67dcf59d1d..0be9c5560a 100644
--- a/src/xml/SkXMLWriter.cpp
+++ b/src/xml/SkXMLWriter.cpp
@@ -6,7 +6,9 @@
*/
#include "SkXMLWriter.h"
+
#include "SkStream.h"
+#include "SkTo.h"
SkXMLWriter::SkXMLWriter(bool doEscapeMarkup) : fDoEscapeMarkup(doEscapeMarkup)
{}