Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4145)

Unified Diff: chrome/browser/android/most_visited_sites_unittest.cc

Issue 1772363002: Start using the whitelist icon on the NTP. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing newt's comments Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/android/most_visited_sites_unittest.cc
diff --git a/chrome/browser/android/most_visited_sites_unittest.cc b/chrome/browser/android/most_visited_sites_unittest.cc
index 740e687d39e79f87162bc1da77d1c0e2dd9a0dac..d10a886b81d41f9f11e99a80547b47d4bf1d83aa 100644
--- a/chrome/browser/android/most_visited_sites_unittest.cc
+++ b/chrome/browser/android/most_visited_sites_unittest.cc
@@ -82,10 +82,11 @@ class MostVisitedSitesTest : public testing::Test {
bool is_personal,
bool whitelist) {
return make_scoped_ptr(new MostVisitedSites::Suggestion(
- title_url.title, title_url.url,
+ title_url.title, GURL(title_url.url),
whitelist ? MostVisitedSites::WHITELIST
: (is_personal ? MostVisitedSites::TOP_SITES
- : MostVisitedSites::POPULAR)));
+ : MostVisitedSites::POPULAR),
+ base::FilePath(), -1));
}
};
« chrome/browser/android/most_visited_sites.cc ('K') | « chrome/browser/android/most_visited_sites.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698