| Index: chrome/browser/profiles/profile_impl.h
|
| diff --git a/chrome/browser/profiles/profile_impl.h b/chrome/browser/profiles/profile_impl.h
|
| index cab32e2ec9b9ae4affb4047521d547ff7c74f611..6de8007021e21e1739d3e8989876672baeba259f 100644
|
| --- a/chrome/browser/profiles/profile_impl.h
|
| +++ b/chrome/browser/profiles/profile_impl.h
|
| @@ -91,7 +91,6 @@ class ProfileImpl : public Profile,
|
| virtual history::ShortcutsBackend* GetShortcutsBackend() OVERRIDE;
|
| virtual WebDataService* GetWebDataService(ServiceAccessType sat) OVERRIDE;
|
| virtual WebDataService* GetWebDataServiceWithoutCreating() OVERRIDE;
|
| - virtual PasswordStore* GetPasswordStore(ServiceAccessType sat) OVERRIDE;
|
| virtual PrefService* GetPrefs() OVERRIDE;
|
| virtual PrefService* GetOffTheRecordPrefs() OVERRIDE;
|
| virtual TemplateURLFetcher* GetTemplateURLFetcher() OVERRIDE;
|
| @@ -157,12 +156,6 @@ class ProfileImpl : public Profile,
|
| void CreateWebDataService();
|
| FilePath GetPrefFilePath();
|
|
|
| -#if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX)
|
| - LocalProfileId GetLocalProfileId();
|
| -#endif
|
| -
|
| - void CreatePasswordStore();
|
| -
|
| void StopCreateSessionServiceTimer();
|
|
|
| void EnsureRequestContextCreated() {
|
| @@ -243,11 +236,9 @@ class ProfileImpl : public Profile,
|
| scoped_ptr<AutocompleteClassifier> autocomplete_classifier_;
|
| scoped_refptr<history::ShortcutsBackend> shortcuts_backend_;
|
| scoped_refptr<WebDataService> web_data_service_;
|
| - scoped_refptr<PasswordStore> password_store_;
|
| bool history_service_created_;
|
| bool favicon_service_created_;
|
| bool created_web_data_service_;
|
| - bool created_password_store_;
|
| bool clear_local_state_on_exit_;
|
| // Whether or not the last session exited cleanly. This is set only once.
|
| bool last_session_exited_cleanly_;
|
|
|