| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "remoting/client/plugin/pepper_token_fetcher.h" | 5 #include "remoting/client/jni/jni_token_fetcher.h" |
| 6 | 6 |
| 7 #include "remoting/client/plugin/chromoting_instance.h" | 7 #include "remoting/client/jni/chromoting_jni_instance.h" |
| 8 | 8 |
| 9 namespace remoting { | 9 namespace remoting { |
| 10 | 10 |
| 11 PepperTokenFetcher::PepperTokenFetcher(base::WeakPtr<ChromotingInstance> plugin, | 11 JniTokenFetcher::JniTokenFetcher( |
| 12 const std::string& host_public_key) | 12 base::WeakPtr<ChromotingJniInstance> jni_instance, |
| 13 : plugin_(plugin), | 13 const std::string& client_id) |
| 14 host_public_key_(host_public_key), | 14 : jni_instance_(jni_instance), |
| 15 client_id_(client_id), |
| 15 weak_factory_(this) { | 16 weak_factory_(this) { |
| 16 } | 17 } |
| 17 | 18 |
| 18 PepperTokenFetcher::~PepperTokenFetcher() { | 19 JniTokenFetcher::~JniTokenFetcher() { |
| 19 } | 20 } |
| 20 | 21 |
| 21 void PepperTokenFetcher::FetchThirdPartyToken( | 22 void JniTokenFetcher::FetchThirdPartyToken( |
| 22 const GURL& token_url, | 23 const GURL& token_url, |
| 23 const std::string& scope, | 24 const std::string& scope, |
| 24 const TokenFetchedCallback& token_fetched_callback) { | 25 const TokenFetchedCallback& token_fetched_callback) { |
| 25 if (plugin_.get()) { | 26 if (jni_instance_.get()) { |
| 26 token_fetched_callback_ = token_fetched_callback; | 27 token_fetched_callback_ = token_fetched_callback; |
| 27 plugin_->FetchThirdPartyToken(token_url, host_public_key_, scope, | 28 jni_instance_->FetchThirdPartyToken(token_url, client_id_, scope, |
| 28 weak_factory_.GetWeakPtr()); | 29 weak_factory_.GetWeakPtr()); |
| 29 } | 30 } |
| 30 } | 31 } |
| 31 | 32 |
| 32 void PepperTokenFetcher::OnTokenFetched( | 33 void JniTokenFetcher::OnTokenFetched( |
| 33 const std::string& token, const std::string& shared_secret) { | 34 const std::string& token, const std::string& shared_secret) { |
| 34 if (!token_fetched_callback_.is_null()) { | 35 if (!token_fetched_callback_.is_null()) { |
| 35 token_fetched_callback_.Run(token, shared_secret); | 36 token_fetched_callback_.Run(token, shared_secret); |
| 36 token_fetched_callback_.Reset(); | 37 token_fetched_callback_.Reset(); |
| 37 } | 38 } |
| 38 } | 39 } |
| 39 | 40 |
| 40 } // namespace remoting | 41 } // namespace remoting |
| OLD | NEW |