• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef __STATS_LOG_H__
2 #define __STATS_LOG_H__
3 
4 #include <log/log.h>
5 #include <sys/time.h>
6 
7 // Dummy definitions to get rid of unnecessary dependency
8 
9 namespace android {
10 namespace util {
11 enum {
12   NFC_HCE_TRANSACTION_OCCURRED,
13   NFC_ERROR_OCCURRED,
14 };
15 
stats_write(int32_t,...)16 void stats_write(int32_t, ...) {}
17 }  // namespace util
18 }  // namespace android
19 
20 #endif
21