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

Side by Side Diff: src/ports/SkFontMgr_android_parser.h

Issue 1207893002: Clean up a few includes, introduce iwyu. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: SkTypes to export stddef. Created 5 years, 4 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 | « src/ports/SkFontMgr_android.cpp ('k') | src/ports/SkFontMgr_android_parser.cpp » ('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 2011 The Android Open Source Project 2 * Copyright 2011 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 SkFontMgr_android_parser_DEFINED 8 #ifndef SkFontMgr_android_parser_DEFINED
9 #define SkFontMgr_android_parser_DEFINED 9 #define SkFontMgr_android_parser_DEFINED
10 10
11 #include "SkFixed.h"
11 #include "SkString.h" 12 #include "SkString.h"
13 #include "SkTArray.h"
12 #include "SkTDArray.h" 14 #include "SkTDArray.h"
15 #include "SkTypes.h"
13 16
14 #include <climits> 17 #include <climits>
15 #include <limits> 18 #include <limits>
16 19
17 /** \class SkLanguage 20 /** \class SkLanguage
18 21
19 The SkLanguage class represents a human written language, and is used by 22 The SkLanguage class represents a human written language, and is used by
20 text draw operations to determine which glyph to draw when drawing 23 text draw operations to determine which glyph to draw when drawing
21 characters with variants (ie Han-derived characters). 24 characters with variants (ie Han-derived characters).
22 */ 25 */
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 } 209 }
207 if (negate) { 210 if (negate) {
208 n = -n; 211 n = -n;
209 frac = -frac; 212 frac = -frac;
210 } 213 }
211 *value = (n << N) + frac; 214 *value = (n << N) + frac;
212 return true; 215 return true;
213 } 216 }
214 217
215 #endif /* SkFontMgr_android_parser_DEFINED */ 218 #endif /* SkFontMgr_android_parser_DEFINED */
OLDNEW
« no previous file with comments | « src/ports/SkFontMgr_android.cpp ('k') | src/ports/SkFontMgr_android_parser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698