| Index: src/gpu/GrCommandBuilder.cpp
 | 
| diff --git a/src/gpu/GrCommandBuilder.cpp b/src/gpu/GrCommandBuilder.cpp
 | 
| index 3a88cebe686124fccc6bacf28c5a29af886fc13e..abc695499075c53e3893be2e09cc50c49185090a 100644
 | 
| --- a/src/gpu/GrCommandBuilder.cpp
 | 
| +++ b/src/gpu/GrCommandBuilder.cpp
 | 
| @@ -12,8 +12,8 @@
 | 
|  
 | 
|  GrCommandBuilder* GrCommandBuilder::Create(GrGpu* gpu, bool reorder) {
 | 
|      if (reorder) {
 | 
| -        return SkNEW(GrReorderCommandBuilder);
 | 
| +        return new GrReorderCommandBuilder;
 | 
|      } else {
 | 
| -        return SkNEW(GrInOrderCommandBuilder);
 | 
| +        return new GrInOrderCommandBuilder;
 | 
|      }
 | 
|  }
 | 
| 
 |