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

Side by Side Diff: include/core/SkDraw.h

Issue 13097005: Remove unused header declaration. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 8 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
« no previous file with comments | « no previous file | no next file » | 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 2006 The Android Open Source Project 3 * Copyright 2006 The Android Open Source Project
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 9
10 #ifndef SkDraw_DEFINED 10 #ifndef SkDraw_DEFINED
11 #define SkDraw_DEFINED 11 #define SkDraw_DEFINED
12 12
13 #include "SkBitmap.h" 13 #include "SkBitmap.h"
14 #include "SkCanvas.h" 14 #include "SkCanvas.h"
15 #include "SkMask.h" 15 #include "SkMask.h"
16 #include "SkMatrix.h" 16 #include "SkMatrix.h"
17 #include "SkPaint.h" 17 #include "SkPaint.h"
18 #include "SkRect.h" 18 #include "SkRect.h"
19 #include "SkAutoKern.h"
20 19
21 class SkBounder; 20 class SkBounder;
22 class SkClipStack; 21 class SkClipStack;
23 class SkDevice; 22 class SkDevice;
24 class SkPath; 23 class SkPath;
25 class SkRegion; 24 class SkRegion;
26 class SkRasterClip; 25 class SkRasterClip;
27 struct SkDrawProcs; 26 struct SkDrawProcs;
28 27
29 class SkDraw { 28 class SkDraw {
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 SkDrawProcs* fProcs; // optional 126 SkDrawProcs* fProcs; // optional
128 127
129 #ifdef SK_DEBUG 128 #ifdef SK_DEBUG
130 void validate() const; 129 void validate() const;
131 #else 130 #else
132 void validate() const {} 131 void validate() const {}
133 #endif 132 #endif
134 }; 133 };
135 134
136 #endif 135 #endif
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698