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

Unified Diff: chrome/browser/sync/profile_sync_service.cc

Issue 2872034: Add the TokenService to the chrome profile (Closed)
Patch Set: Fixed oops :) Created 10 years, 5 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
« no previous file with comments | « chrome/browser/sync/profile_sync_service.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/profile_sync_service.cc
diff --git a/chrome/browser/sync/profile_sync_service.cc b/chrome/browser/sync/profile_sync_service.cc
index d3db701464897347bb0d7f5cf433c5f91f264630..9695b84f828e00cad7ff5fb490131120839a8f99 100644
--- a/chrome/browser/sync/profile_sync_service.cc
+++ b/chrome/browser/sync/profile_sync_service.cc
@@ -22,6 +22,7 @@
#include "chrome/browser/platform_util.h"
#include "chrome/browser/pref_service.h"
#include "chrome/browser/profile.h"
+#include "chrome/browser/net/gaia/token_service.h"
#include "chrome/browser/sync/engine/syncapi.h"
#include "chrome/browser/sync/glue/change_processor.h"
#include "chrome/browser/sync/glue/data_type_controller.h"
@@ -132,7 +133,8 @@ void ProfileSyncService::Initialize() {
if (bootstrap_sync_authentication_) {
// If the LSID is empty, we're in a CrOS UI test that is not testing sync
// behavior, so we don't want the sync service to start.
- if (GetLsidForAuthBootstraping().empty()) {
+ if (profile()->GetTokenService() &&
+ !profile()->GetTokenService()->HasLsid()) {
LOG(WARNING) << "Skipping CrOS sync startup, no LSID present.";
return;
}
@@ -227,30 +229,6 @@ void ProfileSyncService::ClearPreferences() {
pref_service->ScheduleSavePersistentPrefs();
}
-// The domain and name of the LSID cookie which we use to bootstrap the sync
-// authentication in Chromium OS.
-const char kLsidCookieDomain[] = "www.google.com";
-const char kLsidCookieName[] = "LSID";
-
-std::string ProfileSyncService::GetLsidForAuthBootstraping() {
- if (bootstrap_sync_authentication_ && profile()->GetRequestContext()) {
- // If we're running inside Chromium OS, bootstrap the sync authentication by
- // using the LSID cookie provided by the Chromium OS login manager.
- net::CookieMonster::CookieList cookies = profile()->GetRequestContext()->
- GetCookieStore()->GetCookieMonster()->GetAllCookies();
- for (net::CookieMonster::CookieList::const_iterator it = cookies.begin();
- it != cookies.end(); ++it) {
- if (kLsidCookieDomain == it->first) {
- const net::CookieMonster::CanonicalCookie& cookie = it->second;
- if (kLsidCookieName == cookie.Name()) {
- return cookie.Value();
- }
- }
- }
- }
- return std::string();
-}
-
void ProfileSyncService::InitializeBackend(bool delete_sync_data_folder) {
if (!backend_.get()) {
NOTREACHED();
@@ -275,7 +253,7 @@ void ProfileSyncService::InitializeBackend(bool delete_sync_data_folder) {
backend_->Initialize(sync_service_url_,
types,
profile_->GetRequestContext(),
- GetLsidForAuthBootstraping(),
+ profile_->GetTokenService()->GetLsid(),
delete_sync_data_folder,
invalidate_sync_login,
invalidate_sync_xmpp_login,
« no previous file with comments | « chrome/browser/sync/profile_sync_service.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698