| Index: tests/ClipCacheTest.cpp
 | 
| diff --git a/tests/ClipCacheTest.cpp b/tests/ClipCacheTest.cpp
 | 
| index 3d3fa95c0390ed82f53de9ec99b6272eb126f0a1..71d0380ccb68e295042e0b16e04256eb865c192c 100644
 | 
| --- a/tests/ClipCacheTest.cpp
 | 
| +++ b/tests/ClipCacheTest.cpp
 | 
| @@ -31,7 +31,7 @@ static GrTexture* createTexture(GrContext* context) {
 | 
|      desc.fHeight    = Y_SIZE;
 | 
|  
 | 
|      // We are initializing the texture with zeros here
 | 
| -    GrTexture* texture = context->createTexture(desc, false, textureData, 0);
 | 
| +    GrTexture* texture = context->textureProvider()->createTexture(desc, false, textureData, 0);
 | 
|      if (!texture) {
 | 
|          return NULL;
 | 
|      }
 | 
| @@ -52,7 +52,7 @@ static void test_clip_bounds(skiatest::Reporter* reporter, GrContext* context) {
 | 
|      desc.fWidth     = kXSize;
 | 
|      desc.fHeight    = kYSize;
 | 
|  
 | 
| -    GrTexture* texture = context->createTexture(desc, false, NULL, 0);
 | 
| +    GrTexture* texture = context->textureProvider()->createTexture(desc, false, NULL, 0);
 | 
|      if (!texture) {
 | 
|          return;
 | 
|      }
 | 
| 
 |