Chromium Code Reviews| Index: src/gpu/GrRectanizer.h |
| diff --git a/src/gpu/GrRectanizer.h b/src/gpu/GrRectanizer.h |
| index bacf4fddac42bcf810adfbd4d5ed660ea9ab91a8..dc479f1c8d28227f2cf40d77b94c255ca056824b 100644 |
| --- a/src/gpu/GrRectanizer.h |
| +++ b/src/gpu/GrRectanizer.h |
| @@ -20,8 +20,8 @@ public: |
| class GrRectanizer { |
| public: |
| GrRectanizer(int width, int height) : fWidth(width), fHeight(height) { |
| - GrAssert(width >= 0); |
| - GrAssert(height >= 0); |
| + SkASSERT(width >= 0); |
| + SkASSERT(height >= 0); |
| } |
| virtual ~GrRectanizer() {} |