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

Side by Side Diff: chrome/browser/sync/profile_sync_service.h

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 unified diff | Download patch
« no previous file with comments | « chrome/browser/profile.cc ('k') | chrome/browser/sync/profile_sync_service.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ 5 #ifndef CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_
6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ 6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_
7 7
8 #include <string> 8 #include <string>
9 #include <map> 9 #include <map>
10 10
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 UnrecoverableErrorSuspendsService); 361 UnrecoverableErrorSuspendsService);
362 362
363 // Initializes the various settings from the command line. 363 // Initializes the various settings from the command line.
364 void InitSettings(); 364 void InitSettings();
365 365
366 // Sets the last synced time to the current time. 366 // Sets the last synced time to the current time.
367 void UpdateLastSyncedTime(); 367 void UpdateLastSyncedTime();
368 368
369 static const wchar_t* GetPrefNameForDataType(syncable::ModelType data_type); 369 static const wchar_t* GetPrefNameForDataType(syncable::ModelType data_type);
370 370
371 // When running inside Chrome OS, extract the LSID cookie from the cookie
372 // store to bootstrap the authentication process.
373 virtual std::string GetLsidForAuthBootstraping();
374
375 // Time at which we begin an attempt a GAIA authorization. 371 // Time at which we begin an attempt a GAIA authorization.
376 base::TimeTicks auth_start_time_; 372 base::TimeTicks auth_start_time_;
377 373
378 // Time at which error UI is presented for the new tab page. 374 // Time at which error UI is presented for the new tab page.
379 base::TimeTicks auth_error_time_; 375 base::TimeTicks auth_error_time_;
380 376
381 // Factory used to create various dependent objects. 377 // Factory used to create various dependent objects.
382 ProfileSyncFactory* factory_; 378 ProfileSyncFactory* factory_;
383 379
384 // The profile whose data we are synchronizing. 380 // The profile whose data we are synchronizing.
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 438
443 NotificationRegistrar registrar_; 439 NotificationRegistrar registrar_;
444 440
445 ScopedRunnableMethodFactory<ProfileSyncService> 441 ScopedRunnableMethodFactory<ProfileSyncService>
446 scoped_runnable_method_factory_; 442 scoped_runnable_method_factory_;
447 443
448 DISALLOW_COPY_AND_ASSIGN(ProfileSyncService); 444 DISALLOW_COPY_AND_ASSIGN(ProfileSyncService);
449 }; 445 };
450 446
451 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ 447 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_
OLDNEW
« no previous file with comments | « chrome/browser/profile.cc ('k') | chrome/browser/sync/profile_sync_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698