aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/animator/SkDisplayList.h
diff options
context:
space:
mode:
authorGravatar reed <reed@chromium.org>2014-11-26 08:50:45 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2014-11-26 08:50:45 -0800
commit986ca61cf7be3ec590f8820e9b7ba042ac2948fe (patch)
treecae88b225a53c3151006b4f18510cc16d59d6c39 /src/animator/SkDisplayList.h
parentadc8d984678a64e30f3c70b2d76ba1e8345566bb (diff)
rename SkDrawable to SkADrawable
Diffstat (limited to 'src/animator/SkDisplayList.h')
-rw-r--r--src/animator/SkDisplayList.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/animator/SkDisplayList.h b/src/animator/SkDisplayList.h
index a856413def..2beba3e1df 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: