From 385fe4d4b62d7d1dd76116dd570df3290a2f487b Mon Sep 17 00:00:00 2001 From: halcanary Date: Wed, 26 Aug 2015 13:07:48 -0700 Subject: Style Change: SkNEW->new; SkDELETE->delete DOCS_PREVIEW= https://skia.org/?cl=1316123003 Review URL: https://codereview.chromium.org/1316123003 --- tools/PictureBenchmark.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/PictureBenchmark.cpp') diff --git a/tools/PictureBenchmark.cpp b/tools/PictureBenchmark.cpp index f708f53613..9a86d85f9b 100644 --- a/tools/PictureBenchmark.cpp +++ b/tools/PictureBenchmark.cpp @@ -44,10 +44,10 @@ void PictureBenchmark::setTimersToShow(bool wall, Timer* PictureBenchmark::setupTimer(bool useGLTimer) { #if SK_SUPPORT_GPU if (useGLTimer && fRenderer != NULL && fRenderer->isUsingGpuDevice()) { - return SkNEW_ARGS(Timer, (fRenderer->getGLContext())); + return new Timer(fRenderer->getGLContext()); } #endif - return SkNEW_ARGS(Timer, (NULL)); + return new Timer(NULL); } PictureRenderer* PictureBenchmark::setRenderer(sk_tools::PictureRenderer* renderer) { -- cgit v1.2.3