Chromium Code Reviews| Index: gm/shadertext.cpp | 
| =================================================================== | 
| --- gm/shadertext.cpp (revision 11815) | 
| +++ gm/shadertext.cpp (working copy) | 
| @@ -183,7 +183,7 @@ | 
| static const int rowHeight = 60; | 
| static const int colWidth = 300; | 
| canvas->save(); | 
| - for (size_t s = 0; s < SK_ARRAY_COUNT(shaders); s++) { | 
| + for (int s = 0; s < static_cast<int>(SK_ARRAY_COUNT(shaders)); s++) { | 
| canvas->save(); | 
| int i = 2*s; | 
| canvas->translate(SkIntToScalar((i / testsPerCol) * colWidth), |