| Index: src/gpu/GrBitmapTextContext.h | 
| diff --git a/src/gpu/GrBitmapTextContext.h b/src/gpu/GrBitmapTextContext.h | 
| index 6d4ea6d524e255d57e802bbb5c52502c12642625..80abf681f46207c6af855f91e1bca5fbe8719114 100644 | 
| --- a/src/gpu/GrBitmapTextContext.h | 
| +++ b/src/gpu/GrBitmapTextContext.h | 
| @@ -10,6 +10,7 @@ | 
|  | 
| #include "GrTextContext.h" | 
|  | 
| +class GrGeometryProcessor; | 
| class GrTextStrike; | 
|  | 
| /* | 
| @@ -44,14 +45,14 @@ private: | 
| kDefaultRequestedVerts   = kDefaultRequestedGlyphs * 4, | 
| }; | 
|  | 
| -    void*                       fVertices; | 
| -    int32_t                     fMaxVertices; | 
| -    GrTexture*                  fCurrTexture; | 
| -    SkAutoTUnref<GrEffect>      fCachedEffect; | 
| +    void*                             fVertices; | 
| +    int32_t                           fMaxVertices; | 
| +    GrTexture*                        fCurrTexture; | 
| +    SkAutoTUnref<GrGeometryProcessor> fCachedGeometryProcessor; | 
| // Used to check whether fCachedEffect is still valid. | 
| -    uint32_t                    fEffectTextureUniqueID; | 
| -    int                         fCurrVertex; | 
| -    SkRect                      fVertexBounds; | 
| +    uint32_t                          fEffectTextureUniqueID; | 
| +    int                               fCurrVertex; | 
| +    SkRect                            fVertexBounds; | 
| }; | 
|  | 
| #endif | 
|  |