| Index: src/gpu/gl/GrGLContext.cpp | 
| diff --git a/src/gpu/gl/GrGLContext.cpp b/src/gpu/gl/GrGLContext.cpp | 
| index 93f14cfc678e6c28176b2ff36457535834a968d3..9e70b472c5379535f5c02bd6b35e4232fd30e7a4 100644 | 
| --- a/src/gpu/gl/GrGLContext.cpp | 
| +++ b/src/gpu/gl/GrGLContext.cpp | 
| @@ -7,7 +7,6 @@ | 
|  | 
| #include "GrGLContext.h" | 
| #include "GrGLGLSL.h" | 
| -#include "SkSLCompiler.h" | 
|  | 
| //////////////////////////////////////////////////////////////////////////////// | 
|  | 
| @@ -64,17 +63,6 @@ | 
| return new GrGLContext(args); | 
| } | 
|  | 
| -GrGLContext::~GrGLContext() { | 
| -    delete fCompiler; | 
| -} | 
| - | 
| -SkSL::Compiler* GrGLContext::compiler() { | 
| -    if (!fCompiler) { | 
| -        fCompiler = new SkSL::Compiler(); | 
| -    } | 
| -    return fCompiler; | 
| -} | 
| - | 
| GrGLContextInfo::GrGLContextInfo(const ConstructorArgs& args) { | 
| fInterface.reset(SkRef(args.fInterface)); | 
| fGLVersion = args.fGLVersion; | 
|  |