| Index: chrome/browser/history/top_sites_unittest.cc
|
| diff --git a/chrome/browser/history/top_sites_unittest.cc b/chrome/browser/history/top_sites_unittest.cc
|
| index 4524f92dc309bafae5f464c8e706ec419867cbac..1f57ae86d083360f4e4ab40a7b4052d454326694 100644
|
| --- a/chrome/browser/history/top_sites_unittest.cc
|
| +++ b/chrome/browser/history/top_sites_unittest.cc
|
| @@ -240,9 +240,9 @@ class TopSitesTest : public HistoryUnitTestBase {
|
| RedirectList redirects;
|
| redirects.push_back(url);
|
| history_service()->AddPage(
|
| - url, static_cast<void*>(this), 0, GURL(),
|
| - content::PAGE_TRANSITION_TYPED,
|
| - redirects, history::SOURCE_BROWSED, false);
|
| + url, base::Time::Now(), static_cast<void*>(this), 0, GURL(),
|
| + redirects, content::PAGE_TRANSITION_TYPED, history::SOURCE_BROWSED,
|
| + false);
|
| }
|
|
|
| // Adds a page to history.
|
| @@ -250,9 +250,9 @@ class TopSitesTest : public HistoryUnitTestBase {
|
| RedirectList redirects;
|
| redirects.push_back(url);
|
| history_service()->AddPage(
|
| - url, static_cast<void*>(this), 0, GURL(),
|
| - content::PAGE_TRANSITION_TYPED,
|
| - redirects, history::SOURCE_BROWSED, false);
|
| + url, base::Time::Now(), static_cast<void*>(this), 0, GURL(),
|
| + redirects, content::PAGE_TRANSITION_TYPED, history::SOURCE_BROWSED,
|
| + false);
|
| history_service()->SetPageTitle(url, title);
|
| }
|
|
|
| @@ -263,8 +263,8 @@ class TopSitesTest : public HistoryUnitTestBase {
|
| base::Time time) {
|
| history_service()->AddPage(
|
| url, time, static_cast<void*>(this), 0, GURL(),
|
| - content::PAGE_TRANSITION_TYPED,
|
| - redirects, history::SOURCE_BROWSED, false);
|
| + redirects, content::PAGE_TRANSITION_TYPED, history::SOURCE_BROWSED,
|
| + false);
|
| history_service()->SetPageTitle(url, title);
|
| }
|
|
|
|
|