Index: chrome/test/base/testing_profile.cc |
diff --git a/chrome/test/base/testing_profile.cc b/chrome/test/base/testing_profile.cc |
index 7d26924df929de1a9102248ef2297d5aa1eaa7cb..ff55336faec21f93a81c9e32169883d95f22863b 100644 |
--- a/chrome/test/base/testing_profile.cc |
+++ b/chrome/test/base/testing_profile.cc |
@@ -39,7 +39,6 @@ |
#include "chrome/browser/search_engines/template_url_service.h" |
#include "chrome/browser/search_engines/template_url_service_factory.h" |
#include "chrome/browser/speech/chrome_speech_recognition_preferences.h" |
-#include "chrome/browser/sync/profile_sync_service_mock.h" |
#include "chrome/browser/ui/webui/chrome_url_data_manager.h" |
#include "chrome/common/chrome_constants.h" |
#include "chrome/common/chrome_notification_types.h" |
@@ -234,7 +233,6 @@ TestingProfile::~TestingProfile() { |
DestroyHistoryService(); |
// FaviconService depends on HistoryServce so destroying it later. |
DestroyFaviconService(); |
- DestroyWebDataService(); |
if (pref_proxy_config_tracker_.get()) |
pref_proxy_config_tracker_->DetachFromPrefService(); |
@@ -327,21 +325,6 @@ void TestingProfile::CreateProtocolHandlerRegistry() { |
new ProtocolHandlerRegistry::Delegate()); |
} |
-void TestingProfile::CreateWebDataService(bool delete_file) { |
- if (web_data_service_.get()) |
- web_data_service_->Shutdown(); |
- |
- if (delete_file) { |
- FilePath path = GetPath(); |
- path = path.Append(chrome::kWebDataFilename); |
- file_util::Delete(path, false); |
- } |
- |
- web_data_service_ = new WebDataService; |
- if (web_data_service_.get()) |
- web_data_service_->Init(GetPath()); |
-} |
- |
void TestingProfile::BlockUntilBookmarkModelLoaded() { |
DCHECK(bookmark_bar_model_.get()); |
if (bookmark_bar_model_->IsLoaded()) |
@@ -487,14 +470,6 @@ history::ShortcutsBackend* TestingProfile::GetShortcutsBackend() { |
return NULL; |
} |
-WebDataService* TestingProfile::GetWebDataService(ServiceAccessType access) { |
- return web_data_service_.get(); |
-} |
- |
-WebDataService* TestingProfile::GetWebDataServiceWithoutCreating() { |
- return web_data_service_.get(); |
-} |
- |
void TestingProfile::SetPrefService(PrefService* prefs) { |
#if defined(ENABLE_PROTECTOR_SERVICE) |
// ProtectorService binds itself very closely to the PrefService at the moment |
@@ -708,13 +683,6 @@ quota::SpecialStoragePolicy* TestingProfile::GetSpecialStoragePolicy() { |
return GetExtensionSpecialStoragePolicy(); |
} |
-void TestingProfile::DestroyWebDataService() { |
- if (!web_data_service_.get()) |
- return; |
- |
- web_data_service_->Shutdown(); |
-} |
- |
bool TestingProfile::WasCreatedByVersionOrLater(const std::string& version) { |
return true; |
} |