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

Unified Diff: chrome/browser/profiles/profile.h

Issue 9232011: sync: Make ProfileSyncService a ProfileKeyedService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 11 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/profiles/profile.h
diff --git a/chrome/browser/profiles/profile.h b/chrome/browser/profiles/profile.h
index 10de7add69906f3c8cbce40877f43ee8c5145040..725d9890656e50725ebc6da50c1c340f60e639ea 100644
--- a/chrome/browser/profiles/profile.h
+++ b/chrome/browser/profiles/profile.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -382,7 +382,8 @@ class Profile : public content::BrowserContext {
virtual FindBarState* GetFindBarState() = 0;
// Returns true if this profile has a profile sync service.
- virtual bool HasProfileSyncService() const = 0;
+ // TODO(tim): Bug 93922 - remove this.
+ virtual bool HasProfileSyncService() = 0;
// Returns true if the last time this profile was open it was exited cleanly.
virtual bool DidLastSessionExitCleanly() = 0;
@@ -397,6 +398,7 @@ class Profile : public content::BrowserContext {
virtual TokenService* GetTokenService() = 0;
// Returns the ProfileSyncService, creating if not yet created.
+ // TODO(tim): Bug 93922 - remove this.
virtual ProfileSyncService* GetProfileSyncService() = 0;
// Return whether 2 profiles are the same. 2 profiles are the same if they
« no previous file with comments | « chrome/browser/profiles/off_the_record_profile_impl.cc ('k') | chrome/browser/profiles/profile_dependency_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698