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

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

Issue 1707213002: Move SkTDArray to private. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 10 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/views/SkWindow.h ('k') | tools/flags/SkCommandLineFlags.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2006 The Android Open Source Project 2 * Copyright 2006 The Android Open Source Project
3 * 3 *
4 * 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
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SkXMLWriter_DEFINED 8 #ifndef SkXMLWriter_DEFINED
9 #define SkXMLWriter_DEFINED 9 #define SkXMLWriter_DEFINED
10 10
11 #include "SkTDArray.h" 11 #include "../private/SkTDArray.h"
12 #include "SkString.h" 12 #include "SkString.h"
13 #include "SkDOM.h" 13 #include "SkDOM.h"
14 14
15 class SkWStream; 15 class SkWStream;
16 class SkXMLParser; 16 class SkXMLParser;
17 17
18 class SkXMLWriter { 18 class SkXMLWriter {
19 public: 19 public:
20 SkXMLWriter(bool doEscapeMarkup = true); 20 SkXMLWriter(bool doEscapeMarkup = true);
21 virtual ~SkXMLWriter(); 21 virtual ~SkXMLWriter();
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 void onStartElementLen(const char elem[], size_t length) override; 86 void onStartElementLen(const char elem[], size_t length) override;
87 void onEndElement() override; 87 void onEndElement() override;
88 void onAddAttributeLen(const char name[], const char value[], size_t length) override; 88 void onAddAttributeLen(const char name[], const char value[], size_t length) override;
89 void onAddText(const char text[], size_t length) override; 89 void onAddText(const char text[], size_t length) override;
90 private: 90 private:
91 SkXMLParser& fParser; 91 SkXMLParser& fParser;
92 }; 92 };
93 93
94 94
95 #endif 95 #endif
OLDNEW
« no previous file with comments | « include/views/SkWindow.h ('k') | tools/flags/SkCommandLineFlags.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698