| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2006 The Android Open Source Project | 2 * Copyright 2006 The Android Open Source Project |
| 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 SkPath_DEFINED | 8 #ifndef SkPath_DEFINED |
| 9 #define SkPath_DEFINED | 9 #define SkPath_DEFINED |
| 10 | 10 |
| 11 #include "SkMatrix.h" | 11 #include "SkMatrix.h" |
| 12 #include "SkPathRef.h" | 12 #include "SkPathRef.h" |
| 13 #include "SkTDArray.h" | |
| 14 #include "SkRefCnt.h" | 13 #include "SkRefCnt.h" |
| 15 | 14 |
| 16 class SkReader32; | 15 class SkReader32; |
| 17 class SkWriter32; | 16 class SkWriter32; |
| 18 class SkAutoPathBoundsUpdate; | 17 class SkAutoPathBoundsUpdate; |
| 19 class SkString; | 18 class SkString; |
| 20 class SkRRect; | 19 class SkRRect; |
| 21 class SkWStream; | 20 class SkWStream; |
| 22 | 21 |
| 23 /** \class SkPath | 22 /** \class SkPath |
| (...skipping 1119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1143 | 1142 |
| 1144 friend class SkAutoPathBoundsUpdate; | 1143 friend class SkAutoPathBoundsUpdate; |
| 1145 friend class SkAutoDisableOvalCheck; | 1144 friend class SkAutoDisableOvalCheck; |
| 1146 friend class SkAutoDisableDirectionCheck; | 1145 friend class SkAutoDisableDirectionCheck; |
| 1147 friend class SkBench_AddPathTest; // perf test reversePathTo | 1146 friend class SkBench_AddPathTest; // perf test reversePathTo |
| 1148 friend class PathTest_Private; // unit test reversePathTo | 1147 friend class PathTest_Private; // unit test reversePathTo |
| 1149 friend class ForceIsRRect_Private; // unit test isRRect | 1148 friend class ForceIsRRect_Private; // unit test isRRect |
| 1150 }; | 1149 }; |
| 1151 | 1150 |
| 1152 #endif | 1151 #endif |
| OLD | NEW |