| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 Google Inc. |
| 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 #ifndef SkPDFBitmap_DEFINED | 7 #ifndef SkPDFBitmap_DEFINED |
| 8 #define SkPDFBitmap_DEFINED | 8 #define SkPDFBitmap_DEFINED |
| 9 | 9 |
| 10 #include "SkPDFTypes.h" | 10 #include "SkPDFTypes.h" |
| 11 | 11 |
| 12 class SkImage; | 12 class SkImage; |
| 13 | 13 |
| 14 /** | 14 /** |
| 15 * SkPDFBitmap wraps a SkImage and serializes it as an image Xobject. | 15 * SkPDFBitmap wraps a SkImage and serializes it as an image Xobject. |
| 16 * It is designed to use a minimal amout of memory, aside from refing | 16 * It is designed to use a minimal amout of memory, aside from refing |
| 17 * the image, and its emitObject() does not cache any data. | 17 * the image, and its emitObject() does not cache any data. |
| 18 */ | 18 */ |
| 19 SkPDFObject* SkPDFCreateBitmapObject(const SkImage*); | 19 SkPDFObject* SkPDFCreateBitmapObject(const SkImage*, SkPixelSerializer*); |
| 20 | 20 |
| 21 #endif // SkPDFBitmap_DEFINED | 21 #endif // SkPDFBitmap_DEFINED |
| OLD | NEW |