Index: src/gpu/GrCommandBuilder.cpp |
diff --git a/src/gpu/GrCommandBuilder.cpp b/src/gpu/GrCommandBuilder.cpp |
index cfd2225785e5dc5a9a292d1d565092682e76a425..76f830dca03d0ab08d92ad6c556584e730dabe55 100644 |
--- a/src/gpu/GrCommandBuilder.cpp |
+++ b/src/gpu/GrCommandBuilder.cpp |
@@ -12,9 +12,9 @@ |
GrCommandBuilder* GrCommandBuilder::Create(GrGpu* gpu, bool reorder) { |
if (reorder) { |
- return SkNEW_ARGS(GrReorderCommandBuilder, (gpu)); |
+ return SkNEW(GrReorderCommandBuilder); |
} else { |
- return SkNEW_ARGS(GrInOrderCommandBuilder, (gpu)); |
+ return SkNEW(GrInOrderCommandBuilder); |
} |
} |