Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1020)

Side by Side Diff: src/codec/SkRawCodec.h

Issue 1766413002: Use a smart pointer for SkColorSpace factories (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix spacing Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/codec/SkPngCodec.cpp ('k') | src/codec/SkWbmpCodec.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « src/codec/SkPngCodec.cpp ('k') | src/codec/SkWbmpCodec.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698