Index: chrome/test/base/testing_profile.h |
diff --git a/chrome/test/base/testing_profile.h b/chrome/test/base/testing_profile.h |
index 1214218aa60e9cfe7b260736be8dd2316706364c..5ad6f5d602542529406812121cc739f849e2a53e 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(); |
@@ -181,8 +175,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. |
@@ -269,10 +261,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(); |
@@ -296,9 +284,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_; |
- |
// Internally, this is a TestURLRequestContextGetter that creates a dummy |
// request context. Currently, only the CookieMonster is hooked up. |
scoped_refptr<net::URLRequestContextGetter> request_context_; |