| Index: chrome/test/base/testing_profile.h
|
| diff --git a/chrome/test/base/testing_profile.h b/chrome/test/base/testing_profile.h
|
| index 44124168f95387abe9b6a604a67698a6ec89f30f..372cf1d64684895757ea3207388747f8737ae3ce 100644
|
| --- a/chrome/test/base/testing_profile.h
|
| +++ b/chrome/test/base/testing_profile.h
|
| @@ -106,12 +106,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();
|
| @@ -179,8 +173,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.
|
| @@ -266,10 +258,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();
|
|
|
| @@ -293,9 +281,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_;
|
|
|