| OLD | NEW |
| 1 | |
| 2 /* | 1 /* |
| 3 * Copyright 2006 The Android Open Source Project | 2 * Copyright 2006 The Android Open Source Project |
| 4 * | 3 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 7 */ | 6 */ |
| 8 | 7 |
| 9 | 8 |
| 10 #include "SkXMLParser.h" | 9 #include "SkXMLParser.h" |
| 11 | 10 |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 { | 92 { |
| 94 return this->onText(text, len); | 93 return this->onText(text, len); |
| 95 } | 94 } |
| 96 | 95 |
| 97 //////////////////////////////////////////////////////////////////////////////// | 96 //////////////////////////////////////////////////////////////////////////////// |
| 98 | 97 |
| 99 bool SkXMLParser::onStartElement(const char elem[]) {return false; } | 98 bool SkXMLParser::onStartElement(const char elem[]) {return false; } |
| 100 bool SkXMLParser::onAddAttribute(const char name[], const char value[]) {return
false; } | 99 bool SkXMLParser::onAddAttribute(const char name[], const char value[]) {return
false; } |
| 101 bool SkXMLParser::onEndElement(const char elem[]) { return false; } | 100 bool SkXMLParser::onEndElement(const char elem[]) { return false; } |
| 102 bool SkXMLParser::onText(const char text[], int len) {return false; } | 101 bool SkXMLParser::onText(const char text[], int len) {return false; } |
| OLD | NEW |