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

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

Issue 721903002: Cleanup public includes directory. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: &^%%$# 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 unified diff | Download patch
« no previous file with comments | « include/views/unix/keysym2ucs.h ('k') | platform_tools/android/app/jni/AndroidKeyToSkKey.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 /* 2 /*
3 * Copyright 2006 The Android Open Source Project 3 * Copyright 2006 The Android Open Source Project
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 9
10 #ifndef SkBML_WXMLParser_DEFINED 10 #ifndef SkBML_WXMLParser_DEFINED
(...skipping 22 matching lines...) Expand all
33 #ifdef SK_DEBUG 33 #ifdef SK_DEBUG
34 int fElemsCount, fElemsReused; 34 int fElemsCount, fElemsReused;
35 int fAttrsCount, fNamesReused, fValuesReused; 35 int fAttrsCount, fNamesReused, fValuesReused;
36 #endif 36 #endif
37 SkWStream& fWriter; 37 SkWStream& fWriter;
38 char* fElems[256]; 38 char* fElems[256];
39 char* fAttrNames[256]; 39 char* fAttrNames[256];
40 char* fAttrValues[256]; 40 char* fAttrValues[256];
41 41
42 // important that these are U8, so we get automatic wrap-around 42 // important that these are U8, so we get automatic wrap-around
43 U8 fNextElem, fNextAttrName, fNextAttrValue; 43 uint8_t fNextElem, fNextAttrName, fNextAttrValue;
44 }; 44 };
45 45
46 #endif // SkBML_WXMLParser_DEFINED 46 #endif // SkBML_WXMLParser_DEFINED
OLDNEW
« no previous file with comments | « include/views/unix/keysym2ucs.h ('k') | platform_tools/android/app/jni/AndroidKeyToSkKey.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698