| Index: chrome/browser/history/history_backend_unittest.cc
|
| diff --git a/chrome/browser/history/history_backend_unittest.cc b/chrome/browser/history/history_backend_unittest.cc
|
| index 20beee0162c2199e791cd5f5580aa7aac6a48df9..0f029cdb94c09ea3c346409810ba3cce3d379d10 100644
|
| --- a/chrome/browser/history/history_backend_unittest.cc
|
| +++ b/chrome/browser/history/history_backend_unittest.cc
|
| @@ -21,6 +21,7 @@
|
| #include "base/strings/string16.h"
|
| #include "base/strings/string_number_conversions.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| +#include "chrome/browser/history/content_visit_delegate.h"
|
| #include "chrome/browser/history/history_service.h"
|
| #include "chrome/browser/history/history_service_factory.h"
|
| #include "chrome/browser/history/in_memory_history_backend.h"
|
| @@ -3039,8 +3040,8 @@ TEST_F(HistoryBackendTest, RemoveNotification) {
|
| GURL url("http://www.google.com");
|
| HistoryClientMock history_client;
|
| history_client.AddBookmark(url);
|
| - scoped_ptr<HistoryService> service(
|
| - new HistoryService(&history_client, profile.get()));
|
| + scoped_ptr<HistoryService> service(new HistoryService(
|
| + &history_client, scoped_ptr<history::VisitDelegate>()));
|
| EXPECT_TRUE(
|
| service->Init(profile->GetPrefs(),
|
| TestHistoryDatabaseParamsForPath(profile->GetPath())));
|
|
|