diff options
Diffstat (limited to 'ipc/keystore')
-rw-r--r-- | ipc/keystore/KeyStore.cpp | 5 | ||||
-rw-r--r-- | ipc/keystore/KeyStoreConnector.cpp | 5 |
2 files changed, 0 insertions, 10 deletions
diff --git a/ipc/keystore/KeyStore.cpp b/ipc/keystore/KeyStore.cpp index 992bc90757..5544b698dd 100644 --- a/ipc/keystore/KeyStore.cpp +++ b/ipc/keystore/KeyStore.cpp @@ -10,12 +10,7 @@ #include <sys/stat.h> #include <sys/types.h> -#if defined(MOZ_WIDGET_GONK) -#include <android/log.h> -#define KEYSTORE_LOG(args...) __android_log_print(ANDROID_LOG_INFO, "Gonk", args) -#else #define KEYSTORE_LOG(args...) printf(args); -#endif #include "KeyStore.h" #include "jsfriendapi.h" diff --git a/ipc/keystore/KeyStoreConnector.cpp b/ipc/keystore/KeyStoreConnector.cpp index 0e11fcec65..4baf141753 100644 --- a/ipc/keystore/KeyStoreConnector.cpp +++ b/ipc/keystore/KeyStoreConnector.cpp @@ -13,12 +13,7 @@ #include "nsISupportsImpl.h" // for MOZ_COUNT_CTOR, MOZ_COUNT_DTOR #include "nsThreadUtils.h" // For NS_IsMainThread. -#ifdef MOZ_WIDGET_GONK -#include <android/log.h> -#define KEYSTORE_LOG(args...) __android_log_print(ANDROID_LOG_INFO, "Gonk", args) -#else #define KEYSTORE_LOG(args...) printf(args); -#endif namespace mozilla { namespace ipc { |