| Index: chrome/browser/ui/webui/snippets_internals_message_handler.cc
|
| diff --git a/chrome/browser/ui/webui/snippets_internals_message_handler.cc b/chrome/browser/ui/webui/snippets_internals_message_handler.cc
|
| index e2705a823f121c2a21fd6ec03915d77a3624b030..4efe2c9738cd61747e432333512923c1a827688b 100644
|
| --- a/chrome/browser/ui/webui/snippets_internals_message_handler.cc
|
| +++ b/chrome/browser/ui/webui/snippets_internals_message_handler.cc
|
| @@ -191,10 +191,15 @@ void SnippetsInternalsMessageHandler::SendAllContent() {
|
|
|
| SendBoolean("flag-snippets", base::FeatureList::IsEnabled(
|
| ntp_snippets::kContentSuggestionsFeature));
|
| -
|
| - SendBoolean("flag-offline-page-suggestions",
|
| + SendBoolean("flag-recent-offline-tab-suggestions",
|
| base::FeatureList::IsEnabled(
|
| - ntp_snippets::kOfflinePageSuggestionsFeature));
|
| + ntp_snippets::kRecentOfflineTabSuggestionsFeature));
|
| + SendBoolean(
|
| + "flag-download-suggestions",
|
| + base::FeatureList::IsEnabled(ntp_snippets::kDownloadSuggestionsFeature));
|
| + SendBoolean(
|
| + "flag-bookmark-suggestions",
|
| + base::FeatureList::IsEnabled(ntp_snippets::kBookmarkSuggestionsFeature));
|
|
|
| web_ui()->CallJavascriptFunctionUnsafe(
|
| "chrome.SnippetsInternals.setHostRestricted",
|
|
|