| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/flag_descriptions.h" | 5 #include "chrome/browser/flag_descriptions.h" |
| 6 | 6 |
| 7 namespace flag_descriptions { | 7 namespace flag_descriptions { |
| 8 | 8 |
| 9 // Material Design version of chrome://bookmarks | 9 // Material Design version of chrome://bookmarks |
| 10 | 10 |
| (...skipping 2365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2376 "If enabled, missing favicons for NTP tiles get downloaded from Google. " | 2376 "If enabled, missing favicons for NTP tiles get downloaded from Google. " |
| 2377 "This only applies to tiles that originate from synced history."; | 2377 "This only applies to tiles that originate from synced history."; |
| 2378 | 2378 |
| 2379 const char kEnableContentSuggestionsSettingsName[] = | 2379 const char kEnableContentSuggestionsSettingsName[] = |
| 2380 "Show content suggestions settings."; | 2380 "Show content suggestions settings."; |
| 2381 | 2381 |
| 2382 const char kEnableContentSuggestionsSettingsDescription[] = | 2382 const char kEnableContentSuggestionsSettingsDescription[] = |
| 2383 "If enabled, the content suggestions settings will be available from the " | 2383 "If enabled, the content suggestions settings will be available from the " |
| 2384 "main settings menu."; | 2384 "main settings menu."; |
| 2385 | 2385 |
| 2386 const char kEnableContentSuggestionsShowSummaryName[] = |
| 2387 "Show content suggestions summaries."; |
| 2388 |
| 2389 const char kEnableContentSuggestionsShowSummaryDescription[] = |
| 2390 "If enabled, the content suggestions summaries will be shown."; |
| 2391 |
| 2386 const char kEnableNtpRemoteSuggestionsName[] = | 2392 const char kEnableNtpRemoteSuggestionsName[] = |
| 2387 "Show server-side suggestions on the New Tab page"; | 2393 "Show server-side suggestions on the New Tab page"; |
| 2388 | 2394 |
| 2389 const char kEnableNtpRemoteSuggestionsDescription[] = | 2395 const char kEnableNtpRemoteSuggestionsDescription[] = |
| 2390 "If enabled, the list of content suggestions on the New Tab page (see " | 2396 "If enabled, the list of content suggestions on the New Tab page (see " |
| 2391 "#enable-ntp-snippets) will contain server-side suggestions (e.g., " | 2397 "#enable-ntp-snippets) will contain server-side suggestions (e.g., " |
| 2392 "Articles for you). Furthermore, it allows to override the source used " | 2398 "Articles for you). Furthermore, it allows to override the source used " |
| 2393 "to retrieve these server-side suggestions."; | 2399 "to retrieve these server-side suggestions."; |
| 2394 | 2400 |
| 2395 const char kEnableNtpRecentOfflineTabSuggestionsName[] = | 2401 const char kEnableNtpRecentOfflineTabSuggestionsName[] = |
| (...skipping 735 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3131 "hard-reload."; | 3137 "hard-reload."; |
| 3132 | 3138 |
| 3133 const char kCaptureThumbnailOnLoadFinishedName[] = | 3139 const char kCaptureThumbnailOnLoadFinishedName[] = |
| 3134 "Capture page thumbnail on load finished"; | 3140 "Capture page thumbnail on load finished"; |
| 3135 | 3141 |
| 3136 const char kCaptureThumbnailOnLoadFinishedDescription[] = | 3142 const char kCaptureThumbnailOnLoadFinishedDescription[] = |
| 3137 "Capture a page thumbnail (for use on the New Tab page) when the page load " | 3143 "Capture a page thumbnail (for use on the New Tab page) when the page load " |
| 3138 "finishes, in addition to other times a thumbnail may be captured."; | 3144 "finishes, in addition to other times a thumbnail may be captured."; |
| 3139 | 3145 |
| 3140 } // namespace flag_descriptions | 3146 } // namespace flag_descriptions |
| OLD | NEW |