| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2016 Google Inc. | 2 * Copyright 2016 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 | 7 |
| 8 #ifndef SkRawCodec_DEFINED | 8 #ifndef SkRawCodec_DEFINED |
| 9 #define SkRawCodec_DEFINED | 9 #define SkRawCodec_DEFINED |
| 10 | 10 |
| 11 #include "SkCodec.h" | 11 #include "SkCodec.h" |
| 12 #include "SkColorSpace.h" |
| 12 #include "SkImageInfo.h" | 13 #include "SkImageInfo.h" |
| 13 #include "SkTypes.h" | 14 #include "SkTypes.h" |
| 14 | 15 |
| 15 class SkDngImage; | 16 class SkDngImage; |
| 16 class SkStream; | 17 class SkStream; |
| 17 | 18 |
| 18 /* | 19 /* |
| 19 * | 20 * |
| 20 * This class implements the decoding for RAW images | 21 * This class implements the decoding for RAW images |
| 21 * | 22 * |
| (...skipping 29 matching lines...) Expand all Loading... |
| 51 * Called only by NewFromStream, takes ownership of dngImage. | 52 * Called only by NewFromStream, takes ownership of dngImage. |
| 52 */ | 53 */ |
| 53 SkRawCodec(SkDngImage* dngImage); | 54 SkRawCodec(SkDngImage* dngImage); |
| 54 | 55 |
| 55 SkAutoTDelete<SkDngImage> fDngImage; | 56 SkAutoTDelete<SkDngImage> fDngImage; |
| 56 | 57 |
| 57 typedef SkCodec INHERITED; | 58 typedef SkCodec INHERITED; |
| 58 }; | 59 }; |
| 59 | 60 |
| 60 #endif | 61 #endif |
| OLD | NEW |