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

Side by Side Diff: include/utils/SkNWayCanvas.h

Issue 1273613002: Revert of IWYU: 'core' target, files starting A-C. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 4 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 | « include/private/SkRecords.h ('k') | samplecode/SampleAAClip.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 /* 2 /*
3 * Copyright 2011 Google Inc. 3 * Copyright 2011 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #ifndef SkNWayCanvas_DEFINED 9 #ifndef SkNWayCanvas_DEFINED
10 #define SkNWayCanvas_DEFINED 10 #define SkNWayCanvas_DEFINED
11 11
12 #include "SkCanvas.h" 12 #include "SkCanvas.h"
13 #include "SkTDArray.h"
14 13
15 class SK_API SkNWayCanvas : public SkCanvas { 14 class SK_API SkNWayCanvas : public SkCanvas {
16 public: 15 public:
17 SkNWayCanvas(int width, int height); 16 SkNWayCanvas(int width, int height);
18 virtual ~SkNWayCanvas(); 17 virtual ~SkNWayCanvas();
19 18
20 virtual void addCanvas(SkCanvas*); 19 virtual void addCanvas(SkCanvas*);
21 virtual void removeCanvas(SkCanvas*); 20 virtual void removeCanvas(SkCanvas*);
22 virtual void removeAll(); 21 virtual void removeAll();
23 22
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint*) overri de; 79 void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint*) overri de;
81 80
82 class Iter; 81 class Iter;
83 82
84 private: 83 private:
85 typedef SkCanvas INHERITED; 84 typedef SkCanvas INHERITED;
86 }; 85 };
87 86
88 87
89 #endif 88 #endif
OLDNEW
« no previous file with comments | « include/private/SkRecords.h ('k') | samplecode/SampleAAClip.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698