| Index: remoting/protocol/rejecting_authenticator.cc
|
| diff --git a/remoting/protocol/rejecting_authenticator.cc b/remoting/protocol/rejecting_authenticator.cc
|
| index 80a07a0fe7fdb5da6914c212000292e26bfcefd8..b23f298200efe507239b9cc235238768175853dc 100644
|
| --- a/remoting/protocol/rejecting_authenticator.cc
|
| +++ b/remoting/protocol/rejecting_authenticator.cc
|
| @@ -39,7 +39,7 @@ void RejectingAuthenticator::ProcessMessage(
|
| resume_callback.Run();
|
| }
|
|
|
| -scoped_ptr<buzz::XmlElement> RejectingAuthenticator::GetNextMessage() {
|
| +std::unique_ptr<buzz::XmlElement> RejectingAuthenticator::GetNextMessage() {
|
| NOTREACHED();
|
| return nullptr;
|
| }
|
| @@ -49,7 +49,7 @@ const std::string& RejectingAuthenticator::GetAuthKey() const {
|
| return auth_key_;
|
| };
|
|
|
| -scoped_ptr<ChannelAuthenticator>
|
| +std::unique_ptr<ChannelAuthenticator>
|
| RejectingAuthenticator::CreateChannelAuthenticator() const {
|
| NOTREACHED();
|
| return nullptr;
|
|
|