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

Unified Diff: content/renderer/media/webrtc_logging_initializer.cc

Issue 23691066: Hook up WebRTC logging extension API to the underlying functionality. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 2 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 | « content/renderer/media/webrtc_logging_initializer.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/webrtc_logging_initializer.cc
diff --git a/content/renderer/media/webrtc_logging_initializer.cc b/content/renderer/media/webrtc_logging_initializer.cc
index d0d95b46ba6aad30d17aa72fe9acc65499c442bf..e49ec70aafb91800929867c9fbedb28c4afd0b7c 100644
--- a/content/renderer/media/webrtc_logging_initializer.cc
+++ b/content/renderer/media/webrtc_logging_initializer.cc
@@ -21,12 +21,8 @@ void InitWebRtcLoggingDelegate(WebRtcLogMessageDelegate* delegate) {
g_webrtc_logging_delegate = delegate;
}
-void InitWebRtcLogging(const std::string& app_session_id,
- const std::string& app_url) {
- if (g_webrtc_logging_delegate) {
- g_webrtc_logging_delegate->InitLogging(app_session_id, app_url);
- talk_base::InitDiagnosticLoggingDelegateFunction(WebRtcLogMessage);
- }
+void InitWebRtcLogging() {
+ talk_base::InitDiagnosticLoggingDelegateFunction(WebRtcLogMessage);
}
void WebRtcLogMessage(const std::string& message) {
« no previous file with comments | « content/renderer/media/webrtc_logging_initializer.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698