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

Unified Diff: src/animator/SkDisplayList.h

Issue 764463002: rename SkDrawable to SkADrawable (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 1 month 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 side-by-side diff with in-line comments
Download patch
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:

Powered by Google App Engine
This is Rietveld 408576698