 Chromium Code Reviews
 Chromium Code Reviews Issue 99893003:
  Simplify benchmark internal API.  (Closed) 
  Base URL: https://skia.googlecode.com/svn/trunk
    
  
    Issue 99893003:
  Simplify benchmark internal API.  (Closed) 
  Base URL: https://skia.googlecode.com/svn/trunk| Index: bench/MatrixBench.cpp | 
| diff --git a/bench/MatrixBench.cpp b/bench/MatrixBench.cpp | 
| index 4b8cf0223ed280c8f0124b6c8bc037e51e9ed538..7258ff579ddf0d04400d55e1d6739876c98db733 100644 | 
| --- a/bench/MatrixBench.cpp | 
| +++ b/bench/MatrixBench.cpp | 
| @@ -31,8 +31,8 @@ protected: | 
| return fName.c_str(); | 
| } | 
| - virtual void onDraw(SkCanvas*) { | 
| - for (int i = 0; i < this->getLoops(); i++) { | 
| + virtual void onDraw(const int loops, SkCanvas*) { | 
| + for (int i = 0; i < loops; i++) { | 
| this->performTest(); | 
| } | 
| } |