Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(220)

Side by Side Diff: src/utils/SkDumpCanvas.cpp

Issue 1927583002: Repurpose Release_Developer BUILDTYPE and remove SK_DEVELOPER. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix typo Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright 2011 Google Inc. 2 * Copyright 2011 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "SkDumpCanvas.h" 8 #include "SkDumpCanvas.h"
9 9
10 #ifdef SK_DEVELOPER 10 #ifdef SK_DEBUG
11 #include "SkData.h" 11 #include "SkData.h"
12 #include "SkPatchUtils.h" 12 #include "SkPatchUtils.h"
13 #include "SkPicture.h" 13 #include "SkPicture.h"
14 #include "SkPixelRef.h" 14 #include "SkPixelRef.h"
15 #include "SkRRect.h" 15 #include "SkRRect.h"
16 #include "SkString.h" 16 #include "SkString.h"
17 #include "SkTextBlob.h" 17 #include "SkTextBlob.h"
18 #include <stdarg.h> 18 #include <stdarg.h>
19 #include <stdio.h> 19 #include <stdio.h>
20 20
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after
548 548
549 /////////////////////////////////////////////////////////////////////////////// 549 ///////////////////////////////////////////////////////////////////////////////
550 550
551 static void dumpToDebugf(const char text[], void*) { 551 static void dumpToDebugf(const char text[], void*) {
552 SkDebugf("%s\n", text); 552 SkDebugf("%s\n", text);
553 } 553 }
554 554
555 SkDebugfDumper::SkDebugfDumper() : INHERITED(dumpToDebugf, nullptr) {} 555 SkDebugfDumper::SkDebugfDumper() : INHERITED(dumpToDebugf, nullptr) {}
556 556
557 #endif 557 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698