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

Unified Diff: tools/pinspect.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, 8 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 side-by-side diff with in-line comments
Download patch
« src/core/SkResourceCache.cpp ('K') | « tests/RuntimeConfigTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/pinspect.cpp
diff --git a/tools/pinspect.cpp b/tools/pinspect.cpp
index 57aaf1e7224eadf4c9a7df24bb6049779a9d4e75..4dfabcdca48c57c27619fd2678db1974d2205d1c 100644
--- a/tools/pinspect.cpp
+++ b/tools/pinspect.cpp
@@ -45,12 +45,12 @@ static sk_sp<SkPicture> inspect(const char path[]) {
}
static void dumpOps(SkPicture* pic) {
-#ifdef SK_DEVELOPER
+#ifdef SK_DEBUG
SkDebugfDumper dumper;
SkDumpCanvas canvas(&dumper);
canvas.drawPicture(pic);
#else
- printf("SK_DEVELOPER mode not enabled\n");
+ printf("SK_DEBUG mode not enabled\n");
#endif
}
« src/core/SkResourceCache.cpp ('K') | « tests/RuntimeConfigTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698