| Index: remoting/protocol/third_party_client_authenticator.cc
|
| diff --git a/remoting/protocol/third_party_client_authenticator.cc b/remoting/protocol/third_party_client_authenticator.cc
|
| index 70a5c28e157a925bcb891d8a1220d6413312d91f..27d792b43c726f034b8775d0a346b10862f4bc0d 100644
|
| --- a/remoting/protocol/third_party_client_authenticator.cc
|
| +++ b/remoting/protocol/third_party_client_authenticator.cc
|
| @@ -19,10 +19,8 @@ namespace remoting {
|
| namespace protocol {
|
|
|
| ThirdPartyClientAuthenticator::ThirdPartyClientAuthenticator(
|
| - const std::string& host_public_key,
|
| scoped_ptr<TokenFetcher> token_fetcher)
|
| : ThirdPartyAuthenticatorBase(WAITING_MESSAGE),
|
| - host_public_key_(host_public_key),
|
| token_fetcher_(token_fetcher.Pass()) {
|
| }
|
|
|
| @@ -48,7 +46,7 @@ void ThirdPartyClientAuthenticator::ProcessTokenMessage(
|
|
|
| // |token_fetcher_| is owned, so Unretained() is safe here.
|
| token_fetcher_->FetchThirdPartyToken(
|
| - GURL(token_url), host_public_key_, token_scope, base::Bind(
|
| + GURL(token_url), token_scope, base::Bind(
|
| &ThirdPartyClientAuthenticator::OnThirdPartyTokenFetched,
|
| base::Unretained(this), resume_callback));
|
| }
|
|
|