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

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: First patch ready for review. Created 7 years, 3 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
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() {
Jói 2013/09/27 14:39:53 Did you mean to completely remove the declaration
Henrik Grunell 2013/10/02 12:47:18 The "old" InitWebRtcLogging has been removed. It w
+ talk_base::InitDiagnosticLoggingDelegateFunction(WebRtcLogMessage);
}
void WebRtcLogMessage(const std::string& message) {

Powered by Google App Engine
This is Rietveld 408576698