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

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

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/SkOpArray.h ('k') | skia/animator/SkOperand.h » ('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 #include "SkOpArray.h"
2
3 SkOpArray::SkOpArray() : fType(SkOperand2::kNoType) {
4 }
5
6 SkOpArray::SkOpArray(SkOperand2::OpType type) : fType(type) {
7 }
8
9 bool SkOpArray::getIndex(int index, SkOperand2* operand) {
10 if (index >= count()) {
11 SkASSERT(0);
12 return false;
13 }
14 *operand = begin()[index];
15 return true;
16 }
OLDNEW
« no previous file with comments | « skia/animator/SkOpArray.h ('k') | skia/animator/SkOperand.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698