| Index: src/gpu/GrDrawContext.cpp
 | 
| diff --git a/src/gpu/GrDrawContext.cpp b/src/gpu/GrDrawContext.cpp
 | 
| index e9a9619da587742237d7e8b9e007ff681916fefb..35c53eda0edf3688a576efcef7d9b62ccffaf341 100644
 | 
| --- a/src/gpu/GrDrawContext.cpp
 | 
| +++ b/src/gpu/GrDrawContext.cpp
 | 
| @@ -37,6 +37,7 @@
 | 
|  
 | 
|  #include "../private/GrAuditTrail.h"
 | 
|  
 | 
| +#include "SkColorSpaceXform.h"
 | 
|  #include "SkGr.h"
 | 
|  #include "SkLatticeIter.h"
 | 
|  #include "SkMatrixPriv.h"
 | 
| @@ -96,7 +97,7 @@ GrDrawContext::GrDrawContext(GrContext* context,
 | 
|      if (fColorSpace) {
 | 
|          // sRGB sources are very common (SkColor, etc...), so we cache that gamut transformation
 | 
|          auto srgbColorSpace = SkColorSpace::NewNamed(SkColorSpace::kSRGB_Named);
 | 
| -        fColorXformFromSRGB = GrColorSpaceXform::Make(srgbColorSpace.get(), fColorSpace.get());
 | 
| +        fColorXformFromSRGB = SkColorSpaceXform::New(srgbColorSpace, fColorSpace);
 | 
|      }
 | 
|      SkDEBUGCODE(this->validate();)
 | 
|  }
 | 
| 
 |