| Index: components/ntp_tiles/popular_sites_impl.cc
|
| diff --git a/components/ntp_tiles/popular_sites_impl.cc b/components/ntp_tiles/popular_sites_impl.cc
|
| index 7777e37dc47718bdca635e405a29690262ee1137..1e3bbfce9b383baec41bd563c318b7b2aaa492ed 100644
|
| --- a/components/ntp_tiles/popular_sites_impl.cc
|
| +++ b/components/ntp_tiles/popular_sites_impl.cc
|
| @@ -136,7 +136,8 @@ PopularSites::SitesVector ParseSiteList(const base::ListValue& list) {
|
| return sites;
|
| }
|
|
|
| -#if defined(GOOGLE_CHROME_BUILD) && (defined(OS_ANDROID) || defined(OS_IOS))
|
| +#if 0 && defined(GOOGLE_CHROME_BUILD) && \
|
| + (defined(OS_ANDROID) || defined(OS_IOS))
|
| void SetDefaultResourceForSite(int index,
|
| int resource_id,
|
| base::ListValue* sites) {
|
| @@ -150,7 +151,7 @@ void SetDefaultResourceForSite(int index,
|
|
|
| // Creates the list of popular sites based on a snapshot available for mobile.
|
| std::unique_ptr<base::ListValue> DefaultPopularSites() {
|
| -#if !defined(OS_ANDROID) && !defined(OS_IOS)
|
| +#if 1 || (!defined(OS_ANDROID) && !defined(OS_IOS))
|
| return base::MakeUnique<base::ListValue>();
|
| #else
|
| std::unique_ptr<base::ListValue> sites =
|
|
|