| Index: src/gpu/gl/GrGLPathRendering.cpp | 
| diff --git a/src/gpu/gl/GrGLPathRendering.cpp b/src/gpu/gl/GrGLPathRendering.cpp | 
| index 5616f9d58ab9e65068c8c431787d6d2cf693f3d6..0ecf58a8e1f47c58cd60351e6f05d1a344d7c58f 100644 | 
| --- a/src/gpu/gl/GrGLPathRendering.cpp | 
| +++ b/src/gpu/gl/GrGLPathRendering.cpp | 
| @@ -106,13 +106,13 @@ | 
| fHWPathStencilSettings.invalidate(); | 
| } | 
|  | 
| -GrPath* GrGLPathRendering::createPath(const SkPath& inPath, const GrStyle& style) { | 
| -    return new GrGLPath(this->gpu(), inPath, style); | 
| +GrPath* GrGLPathRendering::createPath(const SkPath& inPath, const GrStrokeInfo& stroke) { | 
| +    return new GrGLPath(this->gpu(), inPath, stroke); | 
| } | 
|  | 
| GrPathRange* GrGLPathRendering::createPathRange(GrPathRange::PathGenerator* pathGenerator, | 
| -                                                const GrStyle& style) { | 
| -    return new GrGLPathRange(this->gpu(), pathGenerator, style); | 
| +                                                const GrStrokeInfo& stroke) { | 
| +    return new GrGLPathRange(this->gpu(), pathGenerator, stroke); | 
| } | 
|  | 
| void GrGLPathRendering::onStencilPath(const StencilPathArgs& args, const GrPath* path) { | 
|  |