diff options
Diffstat (limited to 'base/liblog_symbols.h')
-rw-r--r-- | base/liblog_symbols.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/base/liblog_symbols.h b/base/liblog_symbols.h index b4ab06a88..2e6b47f7d 100644 --- a/base/liblog_symbols.h +++ b/base/liblog_symbols.h @@ -25,13 +25,10 @@ namespace base { struct LibLogFunctions { void (*__android_log_set_logger)(__android_logger_function logger); - void (*__android_log_write_logger_data)(struct __android_logger_data* logger_data, - const char* msg); + void (*__android_log_write_log_message)(struct __android_log_message* log_message); - void (*__android_log_logd_logger)(const struct __android_logger_data* logger_data, - const char* msg); - void (*__android_log_stderr_logger)(const struct __android_logger_data* logger_data, - const char* message); + void (*__android_log_logd_logger)(const struct __android_log_message* log_message); + void (*__android_log_stderr_logger)(const struct __android_log_message* log_message); void (*__android_log_set_aborter)(__android_aborter_function aborter); void (*__android_log_call_aborter)(const char* abort_message); |