| Index: src/gpu/gl/GrGpuGL.h
 | 
| diff --git a/src/gpu/gl/GrGpuGL.h b/src/gpu/gl/GrGpuGL.h
 | 
| index 1a03c130c69122300f394075db642b5dc8261eb9..b80b2d816046143a949afd9814bc0b6e2a7a36b9 100644
 | 
| --- a/src/gpu/gl/GrGpuGL.h
 | 
| +++ b/src/gpu/gl/GrGpuGL.h
 | 
| @@ -95,17 +95,18 @@ public:
 | 
|          fHWGeometryState.notifyIndexBufferDelete(id);
 | 
|      }
 | 
|  
 | 
| -protected:
 | 
| -    virtual bool onCopySurface(GrSurface* dst,
 | 
| -                               GrSurface* src,
 | 
| -                               const SkIRect& srcRect,
 | 
| -                               const SkIPoint& dstPoint) SK_OVERRIDE;
 | 
| +    // DrawTarget overrides
 | 
| +    virtual bool copySurface(GrSurface* dst,
 | 
| +                             GrSurface* src,
 | 
| +                             const SkIRect& srcRect,
 | 
| +                             const SkIPoint& dstPoint) SK_OVERRIDE;
 | 
|  
 | 
| -    virtual bool onCanCopySurface(GrSurface* dst,
 | 
| -                                  GrSurface* src,
 | 
| -                                  const SkIRect& srcRect,
 | 
| -                                  const SkIPoint& dstPoint) SK_OVERRIDE;
 | 
| +    virtual bool canCopySurface(GrSurface* dst,
 | 
| +                                GrSurface* src,
 | 
| +                                const SkIRect& srcRect,
 | 
| +                                const SkIPoint& dstPoint) SK_OVERRIDE;
 | 
|  
 | 
| +protected:
 | 
|      virtual void buildProgramDesc(const GrOptDrawState&,
 | 
|                                    const GrProgramDesc::DescInfo&,
 | 
|                                    GrGpu::DrawType,
 | 
| 
 |