Index: chrome/test/base/testing_profile.h |
diff --git a/chrome/test/base/testing_profile.h b/chrome/test/base/testing_profile.h |
index 9d4d8755c2d66d4d7e52e9a24d3d401117dc643f..3f810b2ed50779cf0d0950af94c7bb3f85628665 100644 |
--- a/chrome/test/base/testing_profile.h |
+++ b/chrome/test/base/testing_profile.h |
@@ -107,12 +107,6 @@ class TestingProfile : public Profile { |
// registry is NULL. |
void CreateProtocolHandlerRegistry(); |
- // Creates the webdata service. If |delete_file| is true, the webdata file is |
- // deleted first, then the WebDataService is created. As TestingProfile |
- // deletes the directory containing the files used by WebDataService, this |
- // only matters if you're recreating the WebDataService. |
- void CreateWebDataService(bool delete_file); |
- |
// Blocks until the BookmarkModel finishes loaded. This is NOT invoked from |
// CreateBookmarkModel. |
void BlockUntilBookmarkModelLoaded(); |
@@ -186,8 +180,6 @@ class TestingProfile : public Profile { |
net::CookieMonster* GetCookieMonster(); |
virtual AutocompleteClassifier* GetAutocompleteClassifier() OVERRIDE; |
virtual history::ShortcutsBackend* GetShortcutsBackend() OVERRIDE; |
- virtual WebDataService* GetWebDataService(ServiceAccessType access) OVERRIDE; |
- virtual WebDataService* GetWebDataServiceWithoutCreating() OVERRIDE; |
// Sets the profile's PrefService. If a pref service hasn't been explicitly |
// set GetPrefs creates one, so normally you need not invoke this. If you need |
// to set a pref service you must invoke this before GetPrefs. |
@@ -276,10 +268,6 @@ class TestingProfile : public Profile { |
// Destroys favicon service if it has been created. |
void DestroyFaviconService(); |
- // If the webdata service has been created, it is destroyed. This is invoked |
- // from the destructor. |
- void DestroyWebDataService(); |
- |
// Creates a TestingPrefService and associates it with the TestingProfile. |
void CreateTestingPrefService(); |
@@ -303,9 +291,6 @@ class TestingProfile : public Profile { |
// is invoked. |
scoped_ptr<AutocompleteClassifier> autocomplete_classifier_; |
- // The WebDataService. Only created if CreateWebDataService is invoked. |
- scoped_refptr<WebDataService> web_data_service_; |
- |
// The TemplateURLFetcher. Only created if CreateTemplateURLFetcher is |
// invoked. |
scoped_ptr<TemplateURLFetcher> template_url_fetcher_; |