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

Unified Diff: src/animator/SkDrawGroup.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/SkDrawGroup.h
diff --git a/src/animator/SkDrawGroup.h b/src/animator/SkDrawGroup.h
index 336040c115a9976f8b6d2022fb82b25ee5b26776..abc3eb790755252c36a6ea17309d4a1045fbb787 100644
--- a/src/animator/SkDrawGroup.h
+++ b/src/animator/SkDrawGroup.h
@@ -10,11 +10,11 @@
#ifndef SkDrawGroup_DEFINED
#define SkDrawGroup_DEFINED
-#include "SkDrawable.h"
+#include "SkADrawable.h"
#include "SkIntArray.h"
#include "SkMemberInfo.h"
-class SkGroup : public SkDrawable { //interface for schema element <g>
+class SkGroup : public SkADrawable { //interface for schema element <g>
public:
DECLARE_MEMBER_INFO(Group);
SkGroup();
@@ -31,7 +31,7 @@ public:
virtual void dumpDrawables(SkAnimateMaker* );
virtual void dumpEvents();
#endif
- int findGroup(SkDrawable* drawable, SkTDDrawableArray** list,
+ int findGroup(SkADrawable* drawable, SkTDDrawableArray** list,
SkGroup** parent, SkGroup** found, SkTDDrawableArray** grandList);
virtual bool enable(SkAnimateMaker& );
SkTDDrawableArray* getChildren() { return &fChildren; }
@@ -50,7 +50,7 @@ public:
virtual void validate();
#endif
protected:
- bool ifCondition(SkAnimateMaker& maker, SkDrawable* drawable,
+ bool ifCondition(SkAnimateMaker& maker, SkADrawable* drawable,
SkString& conditionString);
SkString condition;
SkString enableCondition;
@@ -59,7 +59,7 @@ protected:
SkTDIntArray fCopies;
SkGroup* fOriginal;
private:
- typedef SkDrawable INHERITED;
+ typedef SkADrawable INHERITED;
};
class SkSave: public SkGroup {

Powered by Google App Engine
This is Rietveld 408576698