| Index: chrome/browser/search_engines/template_url_service_unittest.cc
|
| diff --git a/chrome/browser/search_engines/template_url_service_unittest.cc b/chrome/browser/search_engines/template_url_service_unittest.cc
|
| index c7e4091159619a425ae7a1c455597b4fda6dc49c..0ef973694c36f9e2944b3ad01812c8de3667e0f5 100644
|
| --- a/chrome/browser/search_engines/template_url_service_unittest.cc
|
| +++ b/chrome/browser/search_engines/template_url_service_unittest.cc
|
| @@ -11,6 +11,7 @@
|
| #include "base/string_util.h"
|
| #include "base/test/mock_time_provider.h"
|
| #include "base/threading/thread.h"
|
| +#include "base/time.h"
|
| #include "base/utf_string_conversions.h"
|
| #include "chrome/browser/history/history.h"
|
| #include "chrome/browser/history/history_notifications.h"
|
| @@ -21,8 +22,8 @@
|
| #include "chrome/browser/search_engines/template_url_prepopulate_data.h"
|
| #include "chrome/browser/search_engines/template_url_service.h"
|
| #include "chrome/browser/search_engines/template_url_service_test_util.h"
|
| -#include "chrome/browser/webdata/web_database.h"
|
| #include "chrome/browser/webdata/web_data_service_factory.h"
|
| +#include "chrome/browser/webdata/web_database.h"
|
| #include "chrome/common/url_constants.h"
|
| #include "chrome/test/base/testing_profile.h"
|
| #include "content/public/test/test_browser_thread.h"
|
| @@ -1064,8 +1065,8 @@ TEST_F(TemplateURLServiceTest, GenerateVisitOnKeyword) {
|
| history->AddPage(
|
| GURL(t_url->url_ref().ReplaceSearchTerms(
|
| TemplateURLRef::SearchTermsArgs(ASCIIToUTF16("blah")))),
|
| - NULL, 0, GURL(), content::PAGE_TRANSITION_KEYWORD,
|
| - history::RedirectList(), history::SOURCE_BROWSED, false);
|
| + base::Time::Now(), NULL, 0, GURL(), history::RedirectList(),
|
| + content::PAGE_TRANSITION_KEYWORD, history::SOURCE_BROWSED, false);
|
|
|
| // Wait for history to finish processing the request.
|
| test_util_.profile()->BlockUntilHistoryProcessesPendingRequests();
|
|
|