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

Side by Side Diff: src/pdf/SkPDFBitmap.h

Issue 2110033002: Remove unnecessary includes in src/pdf/ (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: fix order Created 4 years, 5 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/pdf/SkDeflate.cpp ('k') | src/pdf/SkPDFBitmap.cpp » ('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 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 "SkRefCnt.h"
11 11
12 class SkImage; 12 class SkImage;
13 class SkPixelSerializer;
14 class SkPDFObject;
13 15
14 /** 16 /**
15 * SkPDFBitmap wraps a SkImage and serializes it as an image Xobject. 17 * 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 18 * It is designed to use a minimal amout of memory, aside from refing
17 * the image, and its emitObject() does not cache any data. 19 * the image, and its emitObject() does not cache any data.
18 */ 20 */
19 sk_sp<SkPDFObject> SkPDFCreateBitmapObject(sk_sp<SkImage>, 21 sk_sp<SkPDFObject> SkPDFCreateBitmapObject(sk_sp<SkImage>,
20 SkPixelSerializer*); 22 SkPixelSerializer*);
21 23
22 #endif // SkPDFBitmap_DEFINED 24 #endif // SkPDFBitmap_DEFINED
OLDNEW
« no previous file with comments | « src/pdf/SkDeflate.cpp ('k') | src/pdf/SkPDFBitmap.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698