Index: components/ntp_snippets/ntp_snippets_service.cc |
diff --git a/components/ntp_snippets/ntp_snippets_service.cc b/components/ntp_snippets/ntp_snippets_service.cc |
index 6a6898298a09ac69032965a80db510a44b1f85c2..abb96479097b2f196fadb59fa086853e94393f83 100644 |
--- a/components/ntp_snippets/ntp_snippets_service.cc |
+++ b/components/ntp_snippets/ntp_snippets_service.cc |
@@ -67,7 +67,7 @@ void NTPSnippetsService::Init(bool enabled) { |
// If we don't have any snippets yet, start a fetch. |
if (snippets_.empty()) |
- FetchSnippets(false); |
+ FetchSnippets(); |
} |
// The scheduler only exists on Android so far, it's null on other platforms. |
@@ -86,8 +86,8 @@ void NTPSnippetsService::Shutdown() { |
loaded_ = false; |
} |
-void NTPSnippetsService::FetchSnippets(bool overwrite) { |
- snippets_fetcher_->FetchSnippets(overwrite); |
+void NTPSnippetsService::FetchSnippets() { |
+ snippets_fetcher_->FetchSnippets(); |
} |
void NTPSnippetsService::AddObserver(NTPSnippetsServiceObserver* observer) { |