Commit 12faacc9 authored by kelvinp's avatar kelvinp Committed by Commit bot

Fix crash on It2Me host.

This is a regression from https://codereview.chromium.org/1530523002.
We should be passing signal_strategy_.get() instead of signal_strategy.get()
to the underlying JingleSessionManager in
it2me_host.cc

BUG=579758

Review URL: https://codereview.chromium.org/1638733002

Cr-Commit-Position: refs/heads/master@{#371452}
parent 2f57cbef
...@@ -243,7 +243,7 @@ void It2MeHost::FinishConnect() { ...@@ -243,7 +243,7 @@ void It2MeHost::FinishConnect() {
network_settings, protocol::TransportRole::SERVER); network_settings, protocol::TransportRole::SERVER);
scoped_ptr<protocol::SessionManager> session_manager( scoped_ptr<protocol::SessionManager> session_manager(
new protocol::JingleSessionManager(signal_strategy.get())); new protocol::JingleSessionManager(signal_strategy_.get()));
scoped_ptr<protocol::CandidateSessionConfig> protocol_config = scoped_ptr<protocol::CandidateSessionConfig> protocol_config =
protocol::CandidateSessionConfig::CreateDefault(); protocol::CandidateSessionConfig::CreateDefault();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment