diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-02-22 19:03:00 -0500 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-14 12:51:25 +0200 |
commit | da15aa0fdf5ec769a0973a00d84f9fa090de0b60 (patch) | |
tree | c6f5b8197eac51be855aecdae3b5d97207cdf97e /xpcom/base/nsDumpUtils.h | |
parent | 867737dd4b650494404a90b8b99ea959f74462ca (diff) | |
download | UXP-da15aa0fdf5ec769a0973a00d84f9fa090de0b60.tar UXP-da15aa0fdf5ec769a0973a00d84f9fa090de0b60.tar.gz UXP-da15aa0fdf5ec769a0973a00d84f9fa090de0b60.tar.lz UXP-da15aa0fdf5ec769a0973a00d84f9fa090de0b60.tar.xz UXP-da15aa0fdf5ec769a0973a00d84f9fa090de0b60.zip |
Issue #1053 - Remove android support from XPCOM
Diffstat (limited to 'xpcom/base/nsDumpUtils.h')
-rw-r--r-- | xpcom/base/nsDumpUtils.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/xpcom/base/nsDumpUtils.h b/xpcom/base/nsDumpUtils.h index 12a99da18..9bca55927 100644 --- a/xpcom/base/nsDumpUtils.h +++ b/xpcom/base/nsDumpUtils.h @@ -19,12 +19,7 @@ #undef LOG #endif -#ifdef ANDROID -#include "android/log.h" -#define LOG(...) __android_log_print(ANDROID_LOG_INFO, "Gecko:DumpUtils", ## __VA_ARGS__) -#else #define LOG(...) -#endif #ifdef XP_UNIX // { @@ -189,9 +184,8 @@ public: /** * This function creates a new unique file based on |aFilename| in a - * world-readable temp directory. This is the system temp directory - * or, in the case of Android, the downloads directory. If |aFile| is - * non-null, it is assumed to point to a folder, and that folder is used + * world-readable temp directory. This is the system temp directory. + * If |aFile| is non-null, it is assumed to point to a folder, and that folder is used * instead. */ static nsresult OpenTempFile(const nsACString& aFilename, |