| Index: include/effects/SkTileImageFilter.h
 | 
| diff --git a/include/effects/SkTileImageFilter.h b/include/effects/SkTileImageFilter.h
 | 
| index a2a1bb0fe1323cff144f394d6d3cc82b71a67c56..4dccf852be90ee9162f63ea1047e20d7b465cc84 100644
 | 
| --- a/include/effects/SkTileImageFilter.h
 | 
| +++ b/include/effects/SkTileImageFilter.h
 | 
| @@ -15,11 +15,12 @@
 | 
|  
 | 
|  public:
 | 
|      /** Create a tile image filter
 | 
| -        @param src  Defines the pixels to tile
 | 
| -        @param dst  Defines the pixels where tiles are drawn
 | 
| +        @param srcRect  Defines the pixels to tile
 | 
| +        @param dstRect  Defines the pixels where tiles are drawn
 | 
|          @param input    Input from which the subregion defined by srcRect will be tiled
 | 
|      */
 | 
| -    static SkImageFilter* Create(const SkRect& src, const SkRect& dst, SkImageFilter* input);
 | 
| +    static SkTileImageFilter* Create(const SkRect& srcRect, const SkRect& dstRect,
 | 
| +                                     SkImageFilter* input);
 | 
|  
 | 
|      bool onFilterImage(Proxy* proxy, const SkBitmap& src, const Context& ctx,
 | 
|                         SkBitmap* dst, SkIPoint* offset) const override;
 | 
| @@ -31,12 +32,12 @@
 | 
|      SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkTileImageFilter)
 | 
|  
 | 
|  protected:
 | 
| +    SkTileImageFilter(const SkRect& srcRect, const SkRect& dstRect, SkImageFilter* input)
 | 
| +        : INHERITED(1, &input, NULL), fSrcRect(srcRect), fDstRect(dstRect) {}
 | 
| +
 | 
|      void flatten(SkWriteBuffer& buffer) const override;
 | 
|  
 | 
|  private:
 | 
| -    SkTileImageFilter(const SkRect& srcRect, const SkRect& dstRect, SkImageFilter* input)
 | 
| -        : INHERITED(1, &input, NULL), fSrcRect(srcRect), fDstRect(dstRect) {}
 | 
| -
 | 
|      SkRect fSrcRect;
 | 
|      SkRect fDstRect;
 | 
|  };
 | 
| 
 |