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

Unified Diff: src/xml/SkXMLParser.cpp

Issue 722343002: Cleanup the XML directory in public includes. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix ios the right way 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 | « src/xml/SkJSDisplayable.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/xml/SkXMLParser.cpp
diff --git a/src/xml/SkXMLParser.cpp b/src/xml/SkXMLParser.cpp
index 63929a94e2f2b4a3b5b2e572728e6d0fddc8939f..ccc7aa4b02e5bac014b3f46d9599347afda1fc3c 100644
--- a/src/xml/SkXMLParser.cpp
+++ b/src/xml/SkXMLParser.cpp
@@ -59,6 +59,21 @@ SkXMLParser::~SkXMLParser()
{
}
+bool SkXMLParser::parse(SkStream& docStream)
+{
+ return false;
+}
+
+bool SkXMLParser::parse(const char doc[], size_t len)
+{
+ return false;
+}
+
+void SkXMLParser::GetNativeErrorString(int error, SkString* str)
+{
+
+}
+
bool SkXMLParser::startElement(const char elem[])
{
return this->onStartElement(elem);
« no previous file with comments | « src/xml/SkJSDisplayable.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698