OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef CHROME_COMMON_NET_GAIA_OAUTH2_MINT_TOKEN_FETCHER_H_ | 5 #ifndef CHROME_COMMON_NET_GAIA_OAUTH2_MINT_TOKEN_FETCHER_H_ |
6 #define CHROME_COMMON_NET_GAIA_OAUTH2_MINT_TOKEN_FETCHER_H_ | 6 #define CHROME_COMMON_NET_GAIA_OAUTH2_MINT_TOKEN_FETCHER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 29 matching lines...) Expand all Loading... |
40 // This class can handle one request at a time. To parallelize requests, | 40 // This class can handle one request at a time. To parallelize requests, |
41 // create multiple instances. | 41 // create multiple instances. |
42 class OAuth2MintTokenFetcher : public content::URLFetcherDelegate { | 42 class OAuth2MintTokenFetcher : public content::URLFetcherDelegate { |
43 public: | 43 public: |
44 OAuth2MintTokenFetcher(OAuth2MintTokenConsumer* consumer, | 44 OAuth2MintTokenFetcher(OAuth2MintTokenConsumer* consumer, |
45 net::URLRequestContextGetter* getter, | 45 net::URLRequestContextGetter* getter, |
46 const std::string& source); | 46 const std::string& source); |
47 virtual ~OAuth2MintTokenFetcher(); | 47 virtual ~OAuth2MintTokenFetcher(); |
48 | 48 |
49 // Start the flow. | 49 // Start the flow. |
50 void Start(const std::string& oauth_login_access_token, | 50 virtual void Start(const std::string& oauth_login_access_token, |
51 const std::string& client_id, | 51 const std::string& client_id, |
52 const std::vector<std::string>& scopes, | 52 const std::vector<std::string>& scopes, |
53 const std::string& origin); | 53 const std::string& origin); |
54 | 54 |
55 void CancelRequest(); | 55 void CancelRequest(); |
56 | 56 |
57 // Implementation of content::URLFetcherDelegate | 57 // Implementation of content::URLFetcherDelegate |
58 virtual void OnURLFetchComplete(const content::URLFetcher* source) OVERRIDE; | 58 virtual void OnURLFetchComplete(const content::URLFetcher* source) OVERRIDE; |
59 | 59 |
60 private: | 60 private: |
61 enum State { | 61 enum State { |
62 INITIAL, | 62 INITIAL, |
63 MINT_TOKEN_STARTED, | 63 MINT_TOKEN_STARTED, |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 std::string origin_; | 96 std::string origin_; |
97 | 97 |
98 friend class OAuth2MintTokenFetcherTest; | 98 friend class OAuth2MintTokenFetcherTest; |
99 FRIEND_TEST_ALL_PREFIXES(OAuth2MintTokenFetcherTest, | 99 FRIEND_TEST_ALL_PREFIXES(OAuth2MintTokenFetcherTest, |
100 ParseMintTokenResponse); | 100 ParseMintTokenResponse); |
101 | 101 |
102 DISALLOW_COPY_AND_ASSIGN(OAuth2MintTokenFetcher); | 102 DISALLOW_COPY_AND_ASSIGN(OAuth2MintTokenFetcher); |
103 }; | 103 }; |
104 | 104 |
105 #endif // CHROME_COMMON_NET_GAIA_OAUTH2_MINT_TOKEN_FETCHER_H_ | 105 #endif // CHROME_COMMON_NET_GAIA_OAUTH2_MINT_TOKEN_FETCHER_H_ |
OLD | NEW |