summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--AUTHORS1
-rw-r--r--content/browser/renderer_host/media/media_stream_manager.cc8
2 files changed, 2 insertions, 7 deletions
diff --git a/AUTHORS b/AUTHORS
index b381d4f..4c7418b 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -34,6 +34,7 @@ Andrew Brampton <me@bramp.net>
Antonio Gomes <a1.gomes@sisa.samsung.com>
Arthur Lussos <developer0420@gmail.com>
Arun Mankuzhi <arun.m@samsung.com>
+Arunprasad Rajkumar <ararunprasad@gmail.com>
Balazs Kelemen <b.kelemen@samsung.com>
Behara Mani Shyam Patro <behara.ms@samsung.com>
Bem Jones-Bey <bemajaniman@gmail.com>
diff --git a/content/browser/renderer_host/media/media_stream_manager.cc b/content/browser/renderer_host/media/media_stream_manager.cc
index 0c2118f..fdb3b2c 100644
--- a/content/browser/renderer_host/media/media_stream_manager.cc
+++ b/content/browser/renderer_host/media/media_stream_manager.cc
@@ -1566,13 +1566,7 @@ void MediaStreamManager::AddLogMessageOnIOThread(const std::string& message) {
void MediaStreamManager::AddLogMessageOnUIThread(
const std::set<int>& requesting_process_ids,
const std::string& message) {
-#if defined(OS_ANDROID)
- // It appears android_aosp is being built with ENABLE_WEBRTC=0, since it does
- // not find RenderProcessHostImpl::WebRtcLogMessage. Logging is not enabled on
- // Android anyway, so make this function a no-op.
- // TODO(vrk): Figure out what's going on here and fix.
- return;
-#else
+#if defined(ENABLE_WEBRTC)
// Must be on the UI thread to access RenderProcessHost from process ID.
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));