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

Unified Diff: chrome/browser/chromeos/settings/device_oauth2_token_service.cc

Issue 23068005: Convert UserPolicySigninService to use OAuth2TokenService (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge with ToT Created 7 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/settings/device_oauth2_token_service.cc
diff --git a/chrome/browser/chromeos/settings/device_oauth2_token_service.cc b/chrome/browser/chromeos/settings/device_oauth2_token_service.cc
index adcf750b5bfe76898d41bfc69d3591dd08fb4d50..dbcf249e6bfabd215da76c1820a98f90a623d62f 100644
--- a/chrome/browser/chromeos/settings/device_oauth2_token_service.cc
+++ b/chrome/browser/chromeos/settings/device_oauth2_token_service.cc
@@ -220,10 +220,6 @@ DeviceOAuth2TokenService::DeviceOAuth2TokenService(
DeviceOAuth2TokenService::~DeviceOAuth2TokenService() {
}
-net::URLRequestContextGetter* DeviceOAuth2TokenService::GetRequestContext() {
- return url_request_context_getter_.get();
-}
-
scoped_ptr<OAuth2TokenService::Request> DeviceOAuth2TokenService::StartRequest(
const OAuth2TokenService::ScopeSet& scopes,
OAuth2TokenService::Consumer* consumer) {
@@ -283,4 +279,8 @@ std::string DeviceOAuth2TokenService::GetRobotAccountId() {
return std::string();
}
+net::URLRequestContextGetter* DeviceOAuth2TokenService::GetRequestContext() {
+ return url_request_context_getter_.get();
+}
+
} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698