repo.or.cz
/
gecko.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Bug 1540028 [wpt PR 16099] - Catch more exceptions in Document-createElement-namespac...
[gecko.git]
/
widget
/
android
/
AndroidBridgeUtilities.h
blob
6537dcf3f90fb2448186d26b21febb3b088f4283
1
#ifndef ALOG
2
# if defined(DEBUG) || defined(FORCE_ALOG)
3
# define ALOG(args...) __android_log_print(ANDROID_LOG_INFO,
"Gecko"
, ##args)
4
# else
5
# define ALOG(args...) ((void)0)
6
# endif
7
#endif
8
9
#ifdef DEBUG
10
# define ALOG_BRIDGE(args...) ALOG(args)
11
#else
12
# define ALOG_BRIDGE(args...) ((void)0)
13
#endif