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

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

Issue 1707213002: Move SkTDArray to private. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 10 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/core/SkPath.h ('k') | include/core/SkPathMeasure.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 /* 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 SkPathEffect_DEFINED 10 #ifndef SkPathEffect_DEFINED
11 #define SkPathEffect_DEFINED 11 #define SkPathEffect_DEFINED
12 12
13 #include "SkFlattenable.h" 13 #include "SkFlattenable.h"
14 #include "SkPath.h" 14 #include "SkPath.h"
15 #include "SkPoint.h" 15 #include "SkPoint.h"
16 #include "SkRect.h" 16 #include "SkRect.h"
17 #include "SkTDArray.h"
18 17
19 class SkPath; 18 class SkPath;
20 class SkStrokeRec; 19 class SkStrokeRec;
21 20
22 /** \class SkPathEffect 21 /** \class SkPathEffect
23 22
24 SkPathEffect is the base class for objects in the SkPaint that affect 23 SkPathEffect is the base class for objects in the SkPaint that affect
25 the geometry of a drawing primitive before it is transformed by the 24 the geometry of a drawing primitive before it is transformed by the
26 canvas' matrix and drawn. 25 canvas' matrix and drawn.
27 26
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 239
241 private: 240 private:
242 // illegal 241 // illegal
243 SkSumPathEffect(const SkSumPathEffect&); 242 SkSumPathEffect(const SkSumPathEffect&);
244 SkSumPathEffect& operator=(const SkSumPathEffect&); 243 SkSumPathEffect& operator=(const SkSumPathEffect&);
245 244
246 typedef SkPairPathEffect INHERITED; 245 typedef SkPairPathEffect INHERITED;
247 }; 246 };
248 247
249 #endif 248 #endif
OLDNEW
« no previous file with comments | « include/core/SkPath.h ('k') | include/core/SkPathMeasure.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698