OLD | NEW |
(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 #ifndef CHROME_BROWSER_CHROMEOS_SETTINGS_DEVICE_OAUTH2_TOKEN_SERVICE_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_SETTINGS_DEVICE_OAUTH2_TOKEN_SERVICE_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 #include "base/basictypes.h" |
| 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "chrome/browser/signin/oauth2_token_service.h" |
| 13 #include "net/url_request/url_request_context_getter.h" |
| 14 |
| 15 namespace net { |
| 16 class URLRequestContextGetter; |
| 17 } |
| 18 |
| 19 class GoogleServiceAuthError; |
| 20 class PrefRegistrySimple; |
| 21 class Profile; |
| 22 |
| 23 namespace chromeos { |
| 24 |
| 25 // DeviceOAuth2TokenService retrieves OAuth2 access tokens for a given |
| 26 // set of scopes using the device-level OAuth2 any-api refresh token |
| 27 // obtained during enterprise device enrollment. The instance for the |
| 28 // current browser is available from |
| 29 // g_browser_process->device_oauth2_token_service(). |
| 30 // |
| 31 // See |OAuth2TokenService| for usage details. |
| 32 // |
| 33 // Note that requests must be made from the UI thread. |
| 34 class DeviceOAuth2TokenService : public OAuth2TokenService { |
| 35 public: |
| 36 // Do not call the constructor, instead use the instance from |
| 37 // g_browser_process->device_oauth2_token_service(). |
| 38 explicit DeviceOAuth2TokenService(net::URLRequestContextGetter* getter); |
| 39 virtual ~DeviceOAuth2TokenService(); |
| 40 |
| 41 // Persist the given refresh token on the device. Overwrites any previous |
| 42 // value. Should only be called during initial device setup. |
| 43 void SetAndSaveRefreshToken(const std::string& refresh_token); |
| 44 |
| 45 static void RegisterPrefs(PrefRegistrySimple* registry); |
| 46 |
| 47 protected: |
| 48 virtual std::string GetRefreshToken() OVERRIDE; |
| 49 |
| 50 private: |
| 51 DISALLOW_COPY_AND_ASSIGN(DeviceOAuth2TokenService); |
| 52 }; |
| 53 |
| 54 } // namespace chromeos |
| 55 |
| 56 #endif // CHROME_BROWSER_CHROMEOS_SETTINGS_DEVICE_OAUTH2_TOKEN_SERVICE_H_ |
OLD | NEW |