aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/animator/SkBoundable.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/SkBoundable.h
parentadc8d984678a64e30f3c70b2d76ba1e8345566bb (diff)
rename SkDrawable to SkADrawable
Diffstat (limited to 'src/animator/SkBoundable.h')
-rw-r--r--src/animator/SkBoundable.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/animator/SkBoundable.h b/src/animator/SkBoundable.h
index daeda23c7a..48d1306235 100644
--- a/src/animator/SkBoundable.h
+++ b/src/animator/SkBoundable.h
@@ -10,10 +10,10 @@
#ifndef SkBoundable_DEFINED
#define SkBoundable_DEFINED
-#include "SkDrawable.h"
+#include "SkADrawable.h"
#include "SkRect.h"
-class SkBoundable : public SkDrawable {
+class SkBoundable : public SkADrawable {
public:
SkBoundable();
virtual void clearBounder();
@@ -25,7 +25,7 @@ protected:
void clearBounds() { fBounds.fLeft = (int16_t) SkToU16(0x8000); }; // mark bounds as unset
SkIRect fBounds;
private:
- typedef SkDrawable INHERITED;
+ typedef SkADrawable INHERITED;
};
class SkBoundableAuto {