| Index: chrome/browser/android/ntp/most_visited_sites.cc
|
| diff --git a/chrome/browser/android/ntp/most_visited_sites.cc b/chrome/browser/android/ntp/most_visited_sites.cc
|
| index aa7f5dd140f5541974baf0d05bdaa8e50ac35c14..e5305e05cdc3d2362e9a12d3148e549687babaaf 100644
|
| --- a/chrome/browser/android/ntp/most_visited_sites.cc
|
| +++ b/chrome/browser/android/ntp/most_visited_sites.cc
|
| @@ -635,7 +635,10 @@ void MostVisitedSites::SaveNewNTPSuggestions(
|
| popular_sites_suggestions.size();
|
| std::vector<std::string> old_sites_url;
|
| std::vector<bool> old_sites_is_personal;
|
| - GetPreviousNTPSites(num_actual_tiles, &old_sites_url, &old_sites_is_personal);
|
| + // TODO(treib): We used to call |GetPreviousNTPSites| here to populate
|
| + // |old_sites_url| and |old_sites_is_personal|, but that caused problems
|
| + // (crbug.com/585391). Either figure out a way to fix them and re-enable,
|
| + // or properly remove the order-persisting code. crbug.com/601734
|
| MostVisitedSites::SuggestionsVector merged_suggestions = MergeSuggestions(
|
| personal_suggestions, &whitelist_suggestions, &popular_sites_suggestions,
|
| old_sites_url, old_sites_is_personal);
|
|
|