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

Side by Side Diff: platform_tools/android/apps/canvasproof/src/main/jni/Debugf.h

Issue 1258123004: android/apps: Add CanvasProof App; (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: swipe down to switch views Created 5 years, 4 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
(Empty)
1 /*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7 #ifndef Debugf_DEFINED
8 #define Debugf_DEFINED
9
10 #include <android/log.h>
11 #define Debugf(DTAG, ...) \
12 __android_log_print(ANDROID_LOG_VERBOSE, DTAG, __VA_ARGS__)
13
14 #endif // Debugf_DEFINED
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698