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

Side by Side Diff: experimental/PdfViewer/SkTrackDevice.h

Issue 23493018: pdfviewer: fix break, include the right header. (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 3 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright 2013 Google Inc. 2 * Copyright 2013 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 SkTrackDevice_DEFINED 8 #ifndef SkTrackDevice_DEFINED
9 #define SkTrackDevice_DEFINED 9 #define SkTrackDevice_DEFINED
10 10
11 #include "SkDevice.h" 11 #include "SkBitmapDevice.h"
12 #include "SkTracker.h" 12 #include "SkTracker.h"
13 13
14 class SkTrackDevice : public SkBitmapDevice { 14 class SkTrackDevice : public SkBitmapDevice {
15 public: 15 public:
16 SK_DECLARE_INST_COUNT(SkTrackDevice) 16 SK_DECLARE_INST_COUNT(SkTrackDevice)
17 17
18 SkTrackDevice(const SkBitmap& bitmap) : SkBitmapDevice(bitmap) 18 SkTrackDevice(const SkBitmap& bitmap) : SkBitmapDevice(bitmap)
19 , fTracker(NULL) {} 19 , fTracker(NULL) {}
20 20
21 SkTrackDevice(const SkBitmap& bitmap, const SkDeviceProperties& deviceProper ties) 21 SkTrackDevice(const SkBitmap& bitmap, const SkDeviceProperties& deviceProper ties)
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 } 175 }
176 } 176 }
177 177
178 private: 178 private:
179 SkTracker* fTracker; 179 SkTracker* fTracker;
180 180
181 typedef SkBitmapDevice INHERITED; 181 typedef SkBitmapDevice INHERITED;
182 }; 182 };
183 183
184 #endif // SkTrackDevice_DEFINED 184 #endif // SkTrackDevice_DEFINED
OLDNEW
« no previous file with comments | « experimental/PdfViewer/SkPdfRenderer.cpp ('k') | experimental/PdfViewer/pdfparser/native/SkPdfNativeTokenizer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698