Chromium Code Reviews| Index: remoting/protocol/pepper_session_manager.cc |
| diff --git a/remoting/protocol/pepper_session_manager.cc b/remoting/protocol/pepper_session_manager.cc |
| index 877b650b00c0729adf8c746df2700082c47370d3..baf8dbda3719dc35ea7b080849e55889f1cc4c5d 100644 |
| --- a/remoting/protocol/pepper_session_manager.cc |
| +++ b/remoting/protocol/pepper_session_manager.cc |
| @@ -70,16 +70,16 @@ void PepperSessionManager::OnJingleInfo( |
| } |
| } |
| -Session* PepperSessionManager::Connect( |
| +scoped_ptr<Session> PepperSessionManager::Connect( |
| const std::string& host_jid, |
| - Authenticator* authenticator, |
| - CandidateSessionConfig* config, |
| + scoped_ptr<Authenticator> authenticator, |
| + scoped_ptr<CandidateSessionConfig> config, |
| const Session::StateChangeCallback& state_change_callback) { |
| PepperSession* session = new PepperSession(this); |
|
Wez
2012/01/19 03:18:17
Make this the scoped_ptr<>, and return Pass()?
Sergey Ulanov
2012/01/19 20:11:42
Done.
|
| - session->StartConnection(host_jid, authenticator, config, |
| + session->StartConnection(host_jid, authenticator.Pass(), config.Pass(), |
| state_change_callback); |
| sessions_[session->session_id_] = session; |
| - return session; |
| + return scoped_ptr<Session>(session); |
| } |
| void PepperSessionManager::Close() { |