Index: src/animator/SkDisplayTypes.cpp |
=================================================================== |
--- src/animator/SkDisplayTypes.cpp (revision 5253) |
+++ src/animator/SkDisplayTypes.cpp (working copy) |
@@ -11,7 +11,7 @@ |
#include "SkAnimateBase.h" |
bool SkDisplayDepend::canContainDependents() const { |
- return true; |
+ return true; |
} |
void SkDisplayDepend::dirty() { |
@@ -118,7 +118,7 @@ |
SkDisplayString::SkDisplayString(SkString& copyFrom) : value(copyFrom) { |
} |
-void SkDisplayString::executeFunction(SkDisplayable* target, int index, |
+void SkDisplayString::executeFunction(SkDisplayable* target, int index, |
SkTDArray<SkScriptValue>& parameters, SkDisplayTypes type, |
SkScriptValue* scriptValue) { |
if (scriptValue == NULL) |
@@ -150,7 +150,7 @@ |
} |
bool SkDisplayString::getProperty(int index, SkScriptValue* scriptValue) const { |
- switch (index) { |
+ switch (index) { |
case SK_PROPERTY(length): |
scriptValue->fType = SkType_Int; |
scriptValue->fOperand.fS32 = (int32_t) value.size(); |
@@ -201,7 +201,7 @@ |
} |
bool SkDisplayArray::getProperty(int index, SkScriptValue* value) const { |
- switch (index) { |
+ switch (index) { |
case SK_PROPERTY(length): |
value->fType = SkType_Int; |
value->fOperand.fS32 = values.count(); |
Property changes on: src/animator/SkDisplayTypes.cpp |
___________________________________________________________________ |
Added: svn:eol-style |
+ LF |