Index: src/animator/SkDisplayList.h |
diff --git a/src/animator/SkDisplayList.h b/src/animator/SkDisplayList.h |
index a856413def34f416c63ffa57e35733ef814ed5a4..2beba3e1df4ac12f845eca11caf0e90387408576 100644 |
--- a/src/animator/SkDisplayList.h |
+++ b/src/animator/SkDisplayList.h |
@@ -16,7 +16,7 @@ |
class SkAnimateMaker; |
class SkActive; |
class SkApply; |
-class SkDrawable; |
+class SkADrawable; |
class SkGroup; |
class SkDisplayList : public SkRefCnt { |
@@ -33,9 +33,9 @@ public: |
static int fIndent; |
static int fDumpIndex; |
#endif |
- int findGroup(SkDrawable* match, SkTDDrawableArray** list, |
+ int findGroup(SkADrawable* match, SkTDDrawableArray** list, |
SkGroup** parent, SkGroup** found, SkTDDrawableArray** grandList); |
- SkDrawable* get(int index) { return fDrawList[index]; } |
+ SkADrawable* get(int index) { return fDrawList[index]; } |
SkMSec getTime() { return fInTime; } |
SkTDDrawableArray* getDrawList() { return &fDrawList; } |
void hardReset(); |
@@ -47,9 +47,9 @@ public: |
#else |
void validate() {} |
#endif |
- static int SearchForMatch(SkDrawable* match, SkTDDrawableArray** list, |
+ static int SearchForMatch(SkADrawable* match, SkTDDrawableArray** list, |
SkGroup** parent, SkGroup** found, SkTDDrawableArray**grandList); |
- static bool SearchGroupForMatch(SkDrawable* draw, SkDrawable* match, |
+ static bool SearchGroupForMatch(SkADrawable* draw, SkADrawable* match, |
SkTDDrawableArray** list, SkGroup** parent, SkGroup** found, SkTDDrawableArray** grandList, |
int &index); |
public: |