Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Side by Side Diff: remoting/client/plugin/pepper_token_fetcher.cc

Issue 311983003: Third Party Authentication for Android Part I - TokenFetcherProxy (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressing CR feedbacks Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « remoting/client/plugin/pepper_token_fetcher.h ('k') | remoting/client/token_fetcher_proxy.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "remoting/client/plugin/pepper_token_fetcher.h"
6
7 #include "remoting/client/plugin/chromoting_instance.h"
8
9 namespace remoting {
10
11 PepperTokenFetcher::PepperTokenFetcher(base::WeakPtr<ChromotingInstance> plugin,
12 const std::string& host_public_key)
13 : plugin_(plugin),
14 host_public_key_(host_public_key),
15 weak_factory_(this) {
16 }
17
18 PepperTokenFetcher::~PepperTokenFetcher() {
19 }
20
21 void PepperTokenFetcher::FetchThirdPartyToken(
22 const GURL& token_url,
23 const std::string& scope,
24 const TokenFetchedCallback& token_fetched_callback) {
25 if (plugin_.get()) {
26 token_fetched_callback_ = token_fetched_callback;
27 plugin_->FetchThirdPartyToken(token_url, host_public_key_, scope,
28 weak_factory_.GetWeakPtr());
29 }
30 }
31
32 void PepperTokenFetcher::OnTokenFetched(
33 const std::string& token, const std::string& shared_secret) {
34 if (!token_fetched_callback_.is_null()) {
35 token_fetched_callback_.Run(token, shared_secret);
36 token_fetched_callback_.Reset();
37 }
38 }
39
40 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/client/plugin/pepper_token_fetcher.h ('k') | remoting/client/token_fetcher_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698