diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-02-22 22:44:01 -0500 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-14 12:52:59 +0200 |
commit | 57383be95da385b336d988ff713b8e3bf097ce0f (patch) | |
tree | 06392b9c4ca8701a49fe1976f25d10bc4e1582bd /ipc/glue/ProtocolUtils.cpp | |
parent | 6ef03f136bac6d677d67d1bcc4e110e891e7c4ca (diff) | |
download | UXP-57383be95da385b336d988ff713b8e3bf097ce0f.tar UXP-57383be95da385b336d988ff713b8e3bf097ce0f.tar.gz UXP-57383be95da385b336d988ff713b8e3bf097ce0f.tar.lz UXP-57383be95da385b336d988ff713b8e3bf097ce0f.tar.xz UXP-57383be95da385b336d988ff713b8e3bf097ce0f.zip |
Issue #1053 - Remove android support from ipc except for ipc/chromium
This does not include android in the imported chromium code as specific research needs done on defines and logic.
Diffstat (limited to 'ipc/glue/ProtocolUtils.cpp')
-rw-r--r-- | ipc/glue/ProtocolUtils.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ipc/glue/ProtocolUtils.cpp b/ipc/glue/ProtocolUtils.cpp index 7d8a1153c..eb18bb987 100644 --- a/ipc/glue/ProtocolUtils.cpp +++ b/ipc/glue/ProtocolUtils.cpp @@ -183,9 +183,7 @@ LogMessageForProtocol(const char* aTopLevelProtocol, base::ProcessId aOtherPid, aOtherPid, aTopLevelProtocol, aContextDescription, StringFromIPCMessageType(aMessageId)); -#ifdef ANDROID - __android_log_write(ANDROID_LOG_INFO, "GeckoIPC", logMessage.get()); -#endif + fputs(logMessage.get(), stderr); } |