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

Side by Side Diff: chrome/browser/net/gaia/token_service.cc

Issue 8742008: ChromeOS: Use OAuth2 refresh token to download GAIA info (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 9 years 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "chrome/browser/net/gaia/token_service.h" 5 #include "chrome/browser/net/gaia/token_service.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/string_util.h" 8 #include "base/string_util.h"
9 #include "chrome/browser/profiles/profile.h" 9 #include "chrome/browser/profiles/profile.h"
10 #include "chrome/common/chrome_notification_types.h" 10 #include "chrome/common/chrome_notification_types.h"
11 #include "chrome/common/chrome_switches.h" 11 #include "chrome/common/chrome_switches.h"
12 #include "chrome/common/net/gaia/gaia_auth_fetcher.h" 12 #include "chrome/common/net/gaia/gaia_auth_fetcher.h"
13 #include "chrome/common/net/gaia/gaia_constants.h" 13 #include "chrome/common/net/gaia/gaia_constants.h"
14 #include "content/public/browser/browser_thread.h" 14 #include "content/public/browser/browser_thread.h"
15 #include "content/public/browser/notification_service.h" 15 #include "content/public/browser/notification_service.h"
16 #include "content/public/browser/notification_source.h" 16 #include "content/public/browser/notification_source.h"
17 #include "net/url_request/url_request_context_getter.h" 17 #include "net/url_request/url_request_context_getter.h"
18 18
19 using content::BrowserThread; 19 using content::BrowserThread;
20 20
21 // Unfortunately kNumServices must be defined in the .h. 21 // Unfortunately kNumServices must be defined in the .h.
22 // TODO(chron): Sync doesn't use the TalkToken anymore so we can stop 22 // TODO(chron): Sync doesn't use the TalkToken anymore so we can stop
23 // requesting it. 23 // requesting it.
24 const char* TokenService::kServices[] = { 24 const char* TokenService::kServices[] = {
25 GaiaConstants::kPicasaService,
26 GaiaConstants::kGaiaService, 25 GaiaConstants::kGaiaService,
27 GaiaConstants::kSyncService, 26 GaiaConstants::kSyncService,
28 GaiaConstants::kTalkService, 27 GaiaConstants::kTalkService,
29 GaiaConstants::kDeviceManagementService, 28 GaiaConstants::kDeviceManagementService,
30 GaiaConstants::kLSOService, 29 GaiaConstants::kLSOService,
31 }; 30 };
32 31
33 const char* kUnusedServiceScope = "unused-service-scope"; 32 const char* kUnusedServiceScope = "unused-service-scope";
34 33
35 // Unfortunately kNumOAuthServices must be defined in the .h. 34 // Unfortunately kNumOAuthServices must be defined in the .h.
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 } 457 }
459 458
460 void TokenService::Observe(int type, 459 void TokenService::Observe(int type,
461 const content::NotificationSource& source, 460 const content::NotificationSource& source,
462 const content::NotificationDetails& details) { 461 const content::NotificationDetails& details) {
463 DCHECK_EQ(type, chrome::NOTIFICATION_TOKEN_UPDATED); 462 DCHECK_EQ(type, chrome::NOTIFICATION_TOKEN_UPDATED);
464 TokenAvailableDetails* tok_details = 463 TokenAvailableDetails* tok_details =
465 content::Details<TokenAvailableDetails>(details).ptr(); 464 content::Details<TokenAvailableDetails>(details).ptr();
466 OnIssueAuthTokenSuccess(tok_details->service(), tok_details->token()); 465 OnIssueAuthTokenSuccess(tok_details->service(), tok_details->token());
467 } 466 }
OLDNEW
« no previous file with comments | « chrome/browser/net/gaia/token_service.h ('k') | chrome/browser/profiles/gaia_info_update_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698