Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(640)

Unified Diff: webrtc/voice_engine/monitor_module.cc

Issue 1736663004: Revert of Remove ignored return code from modules. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/voice_engine/monitor_module.h ('k') | webrtc/voice_engine/output_mixer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/voice_engine/monitor_module.cc
diff --git a/webrtc/voice_engine/monitor_module.cc b/webrtc/voice_engine/monitor_module.cc
index fb3c2b4920164c839cda7632d6e5fd52d91df08d..2d8f4d46565e5997e177fac03d129eeaafcc8e51 100644
--- a/webrtc/voice_engine/monitor_module.cc
+++ b/webrtc/voice_engine/monitor_module.cc
@@ -57,7 +57,7 @@
return kAverageProcessUpdateTimeMs - (now - _lastProcessTime);
}
-void
+int32_t
MonitorModule::Process()
{
_lastProcessTime = TickTime::MillisecondTimestamp();
@@ -66,6 +66,7 @@
{
_observerPtr->OnPeriodicProcess();
}
+ return 0;
}
} // namespace voe
« no previous file with comments | « webrtc/voice_engine/monitor_module.h ('k') | webrtc/voice_engine/output_mixer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698