| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2011 Google Inc. | 3 * Copyright 2011 Google Inc. |
| 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 SkPDFFont_DEFINED | 10 #ifndef SkPDFFont_DEFINED |
| 11 #define SkPDFFont_DEFINED | 11 #define SkPDFFont_DEFINED |
| 12 | 12 |
| 13 #include "SkAdvancedTypefaceMetrics.h" | 13 #include "SkAdvancedTypefaceMetrics.h" |
| 14 #include "SkBitSet.h" | 14 #include "SkBitSet.h" |
| 15 #include "SkPDFTypes.h" | 15 #include "SkPDFTypes.h" |
| 16 #include "SkTDArray.h" | 16 #include "SkTDArray.h" |
| 17 #include "SkThread.h" | |
| 18 #include "SkTypeface.h" | 17 #include "SkTypeface.h" |
| 19 | 18 |
| 20 class SkPaint; | 19 class SkPaint; |
| 21 class SkPDFCanon; | 20 class SkPDFCanon; |
| 22 class SkPDFCatalog; | 21 class SkPDFCatalog; |
| 23 class SkPDFFont; | 22 class SkPDFFont; |
| 24 | 23 |
| 25 class SkPDFGlyphSet : SkNoncopyable { | 24 class SkPDFGlyphSet : SkNoncopyable { |
| 26 public: | 25 public: |
| 27 SkPDFGlyphSet(); | 26 SkPDFGlyphSet(); |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 uint16_t fLastGlyphID; | 199 uint16_t fLastGlyphID; |
| 201 SkAutoTUnref<const SkAdvancedTypefaceMetrics> fFontInfo; | 200 SkAutoTUnref<const SkAdvancedTypefaceMetrics> fFontInfo; |
| 202 SkAutoTUnref<SkPDFDict> fDescriptor; | 201 SkAutoTUnref<SkPDFDict> fDescriptor; |
| 203 | 202 |
| 204 SkAdvancedTypefaceMetrics::FontType fFontType; | 203 SkAdvancedTypefaceMetrics::FontType fFontType; |
| 205 | 204 |
| 206 typedef SkPDFDict INHERITED; | 205 typedef SkPDFDict INHERITED; |
| 207 }; | 206 }; |
| 208 | 207 |
| 209 #endif | 208 #endif |
| OLD | NEW |