| Index: content/renderer/media/webrtc_logging_message_filter.cc
|
| diff --git a/content/renderer/media/webrtc_logging_message_filter.cc b/content/renderer/media/webrtc_logging_message_filter.cc
|
| index 45f93f5e3ac625399184e41ce381970c7a201c66..155de2787eecf56a65d027db7bc85e11f5819127 100644
|
| --- a/content/renderer/media/webrtc_logging_message_filter.cc
|
| +++ b/content/renderer/media/webrtc_logging_message_filter.cc
|
| @@ -54,11 +54,12 @@ void WebRtcLoggingMessageFilter::OnChannelClosing() {
|
|
|
| void WebRtcLoggingMessageFilter::InitLogging(
|
| WebRtcLoggingHandlerImpl* logging_handler,
|
| - const std::string& app_session_id) {
|
| + const std::string& app_session_id,
|
| + const std::string& app_url) {
|
| DCHECK(io_message_loop_->BelongsToCurrentThread());
|
| DCHECK(!logging_handler_);
|
| logging_handler_ = logging_handler;
|
| - Send(new WebRtcLoggingMsg_OpenLog(app_session_id));
|
| + Send(new WebRtcLoggingMsg_OpenLog(app_session_id, app_url));
|
| }
|
|
|
| void WebRtcLoggingMessageFilter::OnLogOpened(
|
|
|