| Index: chrome/browser/android/ntp/popular_sites.cc
|
| diff --git a/chrome/browser/android/ntp/popular_sites.cc b/chrome/browser/android/ntp/popular_sites.cc
|
| index 0c065c033714494d6601edc00b326ebb34ea42b9..a9fdd7685ba3195ad483f304153e4341e8174011 100644
|
| --- a/chrome/browser/android/ntp/popular_sites.cc
|
| +++ b/chrome/browser/android/ntp/popular_sites.cc
|
| @@ -196,7 +196,6 @@ PopularSites::PopularSites(PrefService* prefs,
|
| bool force_download,
|
| const FinishedCallback& callback)
|
| : PopularSites(prefs,
|
| - template_url_service,
|
| download_context,
|
| directory,
|
| GetCountryToUse(prefs,
|
| @@ -209,13 +208,11 @@ PopularSites::PopularSites(PrefService* prefs,
|
| callback) {}
|
|
|
| PopularSites::PopularSites(PrefService* prefs,
|
| - const TemplateURLService* template_url_service,
|
| net::URLRequestContextGetter* download_context,
|
| const base::FilePath& directory,
|
| const GURL& url,
|
| const FinishedCallback& callback)
|
| : PopularSites(prefs,
|
| - template_url_service,
|
| download_context,
|
| directory,
|
| std::string(),
|
| @@ -248,7 +245,6 @@ void PopularSites::RegisterProfilePrefs(
|
| }
|
|
|
| PopularSites::PopularSites(PrefService* prefs,
|
| - const TemplateURLService* template_url_service,
|
| net::URLRequestContextGetter* download_context,
|
| const base::FilePath& directory,
|
| const std::string& country,
|
| @@ -264,7 +260,6 @@ PopularSites::PopularSites(PrefService* prefs,
|
| ? base::FilePath()
|
| : directory.AppendASCII(kPopularSitesLocalFilename)),
|
| prefs_(prefs),
|
| - template_url_service_(template_url_service),
|
| download_context_(download_context),
|
| runner_(
|
| BrowserThread::GetBlockingPool()->GetTaskRunnerWithShutdownBehavior(
|
|
|