OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2010 The Android Open Source Project | 2 * Copyright 2010 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 | 8 |
9 #ifndef SkPDFFormXObject_DEFINED | 9 #ifndef SkPDFFormXObject_DEFINED |
10 #define SkPDFFormXObject_DEFINED | 10 #define SkPDFFormXObject_DEFINED |
(...skipping 19 matching lines...) Expand all Loading... |
30 public: | 30 public: |
31 /** Create a PDF form XObject. Entries for the dictionary entries are | 31 /** Create a PDF form XObject. Entries for the dictionary entries are |
32 * automatically added. | 32 * automatically added. |
33 * @param device The set of graphical elements on this form. | 33 * @param device The set of graphical elements on this form. |
34 */ | 34 */ |
35 explicit SkPDFFormXObject(SkPDFDevice* device); | 35 explicit SkPDFFormXObject(SkPDFDevice* device); |
36 /** | 36 /** |
37 * Create a PDF form XObject from a raw content stream and associated | 37 * Create a PDF form XObject from a raw content stream and associated |
38 * resources. | 38 * resources. |
39 */ | 39 */ |
40 explicit SkPDFFormXObject(SkStreamAsset* content, | 40 explicit SkPDFFormXObject(std::unique_ptr<SkStreamAsset> content, |
41 SkRect bbox, | 41 SkRect bbox, |
42 SkPDFDict* resourceDict); | 42 SkPDFDict* resourceDict); |
43 virtual ~SkPDFFormXObject(); | 43 virtual ~SkPDFFormXObject(); |
44 | 44 |
45 private: | 45 private: |
46 void init(const char* colorSpace, | 46 void init(const char* colorSpace, |
47 SkPDFDict* resourceDict, SkPDFArray* bbox); | 47 SkPDFDict* resourceDict, SkPDFArray* bbox); |
48 }; | 48 }; |
49 | 49 |
50 #endif | 50 #endif |
OLD | NEW |