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

Side by Side Diff: src/animator/SkIntArray.h

Issue 764463002: rename SkDrawable to SkADrawable (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years 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
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 SkIntArray_DEFINED 10 #ifndef SkIntArray_DEFINED
11 #define SkIntArray_DEFINED 11 #define SkIntArray_DEFINED
12 12
13 #include "SkColor.h" 13 #include "SkColor.h"
14 #include "SkDisplayType.h" 14 #include "SkDisplayType.h"
15 #include "SkMath.h" 15 #include "SkMath.h"
16 #include "SkTDArray_Experimental.h" 16 #include "SkTDArray_Experimental.h"
17 17
18 class SkActive; 18 class SkActive;
19 class SkAnimateBase; 19 class SkAnimateBase;
20 class SkDataInput; 20 class SkDataInput;
21 class SkDisplayable; 21 class SkDisplayable;
22 class SkDisplayEvent; 22 class SkDisplayEvent;
23 class SkDrawable; 23 class SkADrawable;
24 class SkDrawColor; 24 class SkDrawColor;
25 class SkMatrixPart; 25 class SkMatrixPart;
26 struct SkMemberInfo; 26 struct SkMemberInfo;
27 class SkPathPart; 27 class SkPathPart;
28 class SkPaintPart; 28 class SkPaintPart;
29 class SkTypedArray; 29 class SkTypedArray;
30 class SkString; 30 class SkString;
31 union SkOperand; 31 union SkOperand;
32 32
33 typedef SkIntArray(int) SkTDIntArray; 33 typedef SkIntArray(int) SkTDIntArray;
34 typedef SkIntArray(SkColor) SkTDColorArray; 34 typedef SkIntArray(SkColor) SkTDColorArray;
35 typedef SkIntArray(SkDisplayTypes) SkTDDisplayTypesArray; 35 typedef SkIntArray(SkDisplayTypes) SkTDDisplayTypesArray;
36 typedef SkIntArray(SkMSec) SkTDMSecArray; 36 typedef SkIntArray(SkMSec) SkTDMSecArray;
37 typedef SkIntArray(SkScalar) SkTDScalarArray; 37 typedef SkIntArray(SkScalar) SkTDScalarArray;
38 38
39 typedef SkLongArray(SkActive*) SkTDActiveArray; 39 typedef SkLongArray(SkActive*) SkTDActiveArray;
40 typedef SkLongArray(SkAnimateBase*) SkTDAnimateArray; 40 typedef SkLongArray(SkAnimateBase*) SkTDAnimateArray;
41 typedef SkLongArray(SkDataInput*) SkTDDataArray; 41 typedef SkLongArray(SkDataInput*) SkTDDataArray;
42 typedef SkLongArray(SkDisplayable*) SkTDDisplayableArray; 42 typedef SkLongArray(SkDisplayable*) SkTDDisplayableArray;
43 typedef SkLongArray(SkDisplayEvent*) SkTDDisplayEventArray; 43 typedef SkLongArray(SkDisplayEvent*) SkTDDisplayEventArray;
44 typedef SkLongArray(SkDrawable*) SkTDDrawableArray; 44 typedef SkLongArray(SkADrawable*) SkTDDrawableArray;
45 typedef SkLongArray(SkDrawColor*) SkTDDrawColorArray; 45 typedef SkLongArray(SkDrawColor*) SkTDDrawColorArray;
46 typedef SkLongArray(SkMatrixPart*) SkTDMatrixPartArray; 46 typedef SkLongArray(SkMatrixPart*) SkTDMatrixPartArray;
47 typedef SkLongArray(const SkMemberInfo*) SkTDMemberInfoArray; 47 typedef SkLongArray(const SkMemberInfo*) SkTDMemberInfoArray;
48 typedef SkLongArray(SkPaintPart*) SkTDPaintPartArray; 48 typedef SkLongArray(SkPaintPart*) SkTDPaintPartArray;
49 typedef SkLongArray(SkPathPart*) SkTDPathPartArray; 49 typedef SkLongArray(SkPathPart*) SkTDPathPartArray;
50 typedef SkLongArray(SkTypedArray*) SkTDTypedArrayArray; 50 typedef SkLongArray(SkTypedArray*) SkTDTypedArrayArray;
51 typedef SkLongArray(SkString*) SkTDStringArray; 51 typedef SkLongArray(SkString*) SkTDStringArray;
52 typedef SkLongArray(SkOperand) SkTDOperandArray; 52 typedef SkLongArray(SkOperand) SkTDOperandArray;
53 typedef SkLongArray(SkOperand*) SkTDOperandPtrArray; 53 typedef SkLongArray(SkOperand*) SkTDOperandPtrArray;
54 54
55 #endif // SkIntArray_DEFINED 55 #endif // SkIntArray_DEFINED
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698