summaryrefslogtreecommitdiffstats
path: root/chrome/browser/profile.h
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-26 22:48:40 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-26 22:48:40 +0000
commit122262403bda963a3bfd93aab68a3c2861de584f (patch)
tree2fce40b8aecf5e82df40f474da47c2c2cc64c46e /chrome/browser/profile.h
parent8e12f3f596a55f74c07b3efcd8c030efef3e9511 (diff)
downloadchromium_src-122262403bda963a3bfd93aab68a3c2861de584f.zip
chromium_src-122262403bda963a3bfd93aab68a3c2861de584f.tar.gz
chromium_src-122262403bda963a3bfd93aab68a3c2861de584f.tar.bz2
Revert the password manager refactoring -- it failed reliability tests.
(For reference, it was committed with the wrong message: "Patch to make password patch build.") This reverts commit r16708. Review URL: http://codereview.chromium.org/113871 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16939 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/profile.h')
-rw-r--r--chrome/browser/profile.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/chrome/browser/profile.h b/chrome/browser/profile.h
index d5e800f..1ee1a19 100644
--- a/chrome/browser/profile.h
+++ b/chrome/browser/profile.h
@@ -31,7 +31,6 @@ class ExtensionProcessManager;
class ExtensionsService;
class HistoryService;
class NavigationController;
-class PasswordStore;
class PrefService;
class SessionService;
class SpellChecker;
@@ -158,9 +157,6 @@ class Profile {
// the ServiceAccessType definition above.
virtual WebDataService* GetWebDataService(ServiceAccessType access) = 0;
- // Returns the PasswordStore for this profile. This is owned by the Profile.
- virtual PasswordStore* GetPasswordStore(ServiceAccessType access) = 0;
-
// Retrieves a pointer to the PrefService that manages the preferences
// for this user profile. The PrefService is lazily created the first
// time that this method is called.
@@ -318,7 +314,6 @@ class ProfileImpl : public Profile,
virtual ExtensionProcessManager* GetExtensionProcessManager();
virtual HistoryService* GetHistoryService(ServiceAccessType sat);
virtual WebDataService* GetWebDataService(ServiceAccessType sat);
- virtual PasswordStore* GetPasswordStore(ServiceAccessType sat);
virtual PrefService* GetPrefs();
virtual TemplateURLModel* GetTemplateURLModel();
virtual TemplateURLFetcher* GetTemplateURLFetcher();
@@ -364,8 +359,6 @@ class ProfileImpl : public Profile,
void CreateWebDataService();
FilePath GetPrefFilePath();
- void CreatePasswordStore();
-
void StopCreateSessionServiceTimer();
void EnsureSessionServiceCreated() {
@@ -408,12 +401,10 @@ class ProfileImpl : public Profile,
scoped_refptr<DownloadManager> download_manager_;
scoped_refptr<HistoryService> history_service_;
scoped_refptr<WebDataService> web_data_service_;
- scoped_refptr<PasswordStore> password_store_;
scoped_refptr<SessionService> session_service_;
scoped_refptr<BrowserThemeProvider> theme_provider_;
bool history_service_created_;
bool created_web_data_service_;
- bool created_password_store_;
bool created_download_manager_;
bool created_theme_provider_;
// Whether or not the last session exited cleanly. This is set only once.