| Index: chrome/browser/search_engines/template_url_service_test_util.cc
|
| diff --git a/chrome/browser/search_engines/template_url_service_test_util.cc b/chrome/browser/search_engines/template_url_service_test_util.cc
|
| index 4388e7fcca24f1c75589e32fbd95a25180e577d0..8e6f3f75cd3c7f4ab691fe38c5fc1f07d147c833 100644
|
| --- a/chrome/browser/search_engines/template_url_service_test_util.cc
|
| +++ b/chrome/browser/search_engines/template_url_service_test_util.cc
|
| @@ -12,6 +12,7 @@
|
| #include "chrome/browser/search_engines/search_terms_data.h"
|
| #include "chrome/browser/search_engines/template_url_service.h"
|
| #include "chrome/browser/search_engines/template_url_service_factory.h"
|
| +#include "chrome/browser/webdata/web_data_service_factory.h"
|
| #include "chrome/common/chrome_notification_types.h"
|
| #include "chrome/test/base/testing_profile.h"
|
| #include "content/public/browser/notification_service.h"
|
| @@ -127,7 +128,7 @@ void TemplateURLServiceTestingProfile::TearDown() {
|
|
|
| // Clean up the test directory.
|
| if (service_.get())
|
| - service_->Shutdown();
|
| + service_ = NULL;
|
| // Note that we must ensure the DB thread is stopped after WDS
|
| // shutdown (so it can commit pending transactions) but before
|
| // deleting the test profile directory, otherwise we may not be
|
| @@ -195,7 +196,8 @@ void TemplateURLServiceTestUtil::ChangeModelToLoadState() {
|
| model()->ChangeToLoadedState();
|
| // Initialize the web data service so that the database gets updated with
|
| // any changes made.
|
| - model()->service_ = profile_->GetWebDataService(Profile::EXPLICIT_ACCESS);
|
| + model()->service_ = WebDataServiceFactory::GetForProfile(
|
| + profile_.get(), Profile::EXPLICIT_ACCESS);
|
| }
|
|
|
| void TemplateURLServiceTestUtil::ClearModel() {
|
|
|