| Index: tests/PictureTest.cpp | 
| diff --git a/tests/PictureTest.cpp b/tests/PictureTest.cpp | 
| index a20ff2728e3cb43cbe255009d46c99990146cb4e..ba6628635054cbc999024cc8769fa43e7dd76cdf 100644 | 
| --- a/tests/PictureTest.cpp | 
| +++ b/tests/PictureTest.cpp | 
| @@ -690,7 +690,7 @@ | 
| make_bm(&bm, 10, 10, SK_ColorRED, true); | 
|  | 
| r.offset(5.0f, 5.0f); | 
| -        canvas->drawBitmapRect(bm, r); | 
| +        canvas->drawBitmapRectToRect(bm, NULL, r); | 
|  | 
| SkAutoTUnref<SkPicture> final(recorder.endRecording()); | 
| REPORTER_ASSERT(reporter, final->willPlayBackBitmaps()); | 
| @@ -1167,7 +1167,7 @@ | 
|  | 
| // Don't care what these record, as long as they're legal. | 
| canvas->drawBitmap(bitmap, 0.0f, 0.0f, &paint); | 
| -    canvas->drawBitmapRect(bitmap, &rect, rect, &paint); | 
| +    canvas->drawBitmapRectToRect(bitmap, &rect, rect, &paint, SkCanvas::kNone_DrawBitmapRectFlag); | 
| canvas->drawBitmapNine(bitmap, irect, rect, &paint); | 
| canvas->drawSprite(bitmap, 1, 1); | 
| } | 
| @@ -1197,8 +1197,8 @@ | 
| // This test is from crbug.com/344987. | 
| // The commands are: | 
| //   saveLayer with paint that modifies alpha | 
| -    //     drawBitmapRect | 
| -    //     drawBitmapRect | 
| +    //     drawBitmapRectToRect | 
| +    //     drawBitmapRectToRect | 
| //   restore | 
| // The bug was that this structure was modified so that: | 
| //  - The saveLayer and restore were eliminated | 
|  |