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

Side by Side Diff: include/xml/SkBML_XMLParser.h

Issue 1868423002: remove unused BML (binary xml) code (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 8 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 unified diff | Download patch
« no previous file with comments | « include/xml/SkBML_WXMLParser.h ('k') | src/xml/SkBML_Verbs.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1
2 /*
3 * Copyright 2006 The Android Open Source Project
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8
9
10 #ifndef SkBML_XMLParser_DEFINED
11 #define SkBML_XMLParser_DEFINED
12
13 class SkStream;
14 class SkWStream;
15 class SkXMLParser;
16 class SkXMLWriter;
17
18 class BML_XMLParser {
19 public:
20 /** Read the byte XML stream and write the decompressed XML.
21 */
22 static void Read(SkStream& s, SkXMLWriter& writer);
23 /** Read the byte XML stream and write the decompressed XML into a writable stream.
24 */
25 static void Read(SkStream& s, SkWStream& output);
26 /** Read the byte XML stream and write the decompressed XML into an XML pars er.
27 */
28 static void Read(SkStream& s, SkXMLParser& output);
29 };
30
31 #endif // SkBML_XMLParser_DEFINED
OLDNEW
« no previous file with comments | « include/xml/SkBML_WXMLParser.h ('k') | src/xml/SkBML_Verbs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698