Chromium Code Reviews| 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 SkPDFDevice_DEFINED | 10 #ifndef SkPDFDevice_DEFINED |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 23 class SkPDFArray; | 23 class SkPDFArray; |
| 24 class SkPDFDevice; | 24 class SkPDFDevice; |
| 25 class SkPDFDict; | 25 class SkPDFDict; |
| 26 class SkPDFFont; | 26 class SkPDFFont; |
| 27 class SkPDFFormXObject; | 27 class SkPDFFormXObject; |
| 28 class SkPDFGlyphSetMap; | 28 class SkPDFGlyphSetMap; |
| 29 class SkPDFGraphicState; | 29 class SkPDFGraphicState; |
| 30 class SkPDFObject; | 30 class SkPDFObject; |
| 31 class SkPDFShader; | 31 class SkPDFShader; |
| 32 class SkPDFStream; | 32 class SkPDFStream; |
| 33 | |
| 34 #ifndef SkTSet_DEFINED | |
|
borenet
2013/05/31 14:29:57
Derek, is this a reasonable thing to do?
djsollen
2013/05/31 17:18:58
Try removing SK_API and the #ifndef
| |
| 33 template <typename T> class SK_API SkTSet; | 35 template <typename T> class SK_API SkTSet; |
| 36 #endif | |
| 34 | 37 |
| 35 // Private classes. | 38 // Private classes. |
| 36 struct ContentEntry; | 39 struct ContentEntry; |
| 37 struct GraphicStateEntry; | 40 struct GraphicStateEntry; |
| 38 struct NamedDestination; | 41 struct NamedDestination; |
| 39 | 42 |
| 40 typedef bool (*EncodeToDCTStream)(SkWStream* stream, const SkBitmap& bitmap, con st SkIRect& rect); | 43 typedef bool (*EncodeToDCTStream)(SkWStream* stream, const SkBitmap& bitmap, con st SkIRect& rect); |
| 41 | 44 |
| 42 /** \class SkPDFDevice | 45 /** \class SkPDFDevice |
| 43 | 46 |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 318 const SkMatrix& matrix); | 321 const SkMatrix& matrix); |
| 319 void handleLinkToNamedDest(SkData* nameData, const SkRect& r, | 322 void handleLinkToNamedDest(SkData* nameData, const SkRect& r, |
| 320 const SkMatrix& matrix); | 323 const SkMatrix& matrix); |
| 321 void defineNamedDestination(SkData* nameData, const SkPoint& point, | 324 void defineNamedDestination(SkData* nameData, const SkPoint& point, |
| 322 const SkMatrix& matrix); | 325 const SkMatrix& matrix); |
| 323 | 326 |
| 324 typedef SkDevice INHERITED; | 327 typedef SkDevice INHERITED; |
| 325 }; | 328 }; |
| 326 | 329 |
| 327 #endif | 330 #endif |
| OLD | NEW |