From 8844f997805ee6c554f457b2777a9af0ff2f3ed3 Mon Sep 17 00:00:00 2001 From: "djsollen@google.com" Date: Tue, 14 Jan 2014 21:54:44 +0000 Subject: Revert "Make leak counters thread-safe and turn them on by default for Debug" iThis CL is breaking the Android debug test bots by firing an assert. BUG=skia:1219 Review URL: https://codereview.chromium.org/138683006 git-svn-id: http://skia.googlecode.com/svn/trunk@13076 2bbb7eff-a529-9590-31e7-b0007b416f81 --- gm/colormatrix.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gm/colormatrix.cpp') diff --git a/gm/colormatrix.cpp b/gm/colormatrix.cpp index 2f98693da2..9ab6563040 100644 --- a/gm/colormatrix.cpp +++ b/gm/colormatrix.cpp @@ -12,9 +12,9 @@ #define WIDTH 500 #define HEIGHT 500 -class SkDoOnce { +class SkOnce { public: - SkDoOnce() : fOnce(false) {}; + SkOnce() : fOnce(false) {}; bool once() const { if (fOnce) { @@ -39,7 +39,7 @@ static void setArray(SkPaint* paint, const SkScalar array[]) { namespace skiagm { class ColorMatrixGM : public GM { - SkDoOnce fOnce; + SkOnce fOnce; void init() { if (fOnce.once()) { fSolidBitmap = this->createSolidBitmap(64, 64); -- cgit v1.2.3