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

Side by Side Diff: skia/animator/SkOpArray.h

Issue 113827: Remove the remainder of the skia source code from the Chromium repo.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 6 months 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « skia/animator/SkMemberInfo.cpp ('k') | skia/animator/SkOpArray.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #ifndef SkOpArray_DEFINED
2 #define SkOpArray_DEFINED
3
4 #include "SkOperand2.h"
5 #include "SkTDArray_Experimental.h"
6
7 typedef SkLongArray(SkOperand2) SkTDOperand2Array;
8
9 class SkOpArray : public SkTDOperand2Array {
10 public:
11 SkOpArray();
12 SkOpArray(SkOperand2::OpType type);
13 bool getIndex(int index, SkOperand2* operand);
14 SkOperand2::OpType getType() { return fType; }
15 void setType(SkOperand2::OpType type) {
16 fType = type;
17 }
18 protected:
19 SkOperand2::OpType fType;
20 };
21
22 #endif // SkOpArray_DEFINED
OLDNEW
« no previous file with comments | « skia/animator/SkMemberInfo.cpp ('k') | skia/animator/SkOpArray.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698