| 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 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 5 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| 7 | 7 |
| 8 // Includes needed for macros allowing conditional compilation of some strings. | 8 // Includes needed for macros allowing conditional compilation of some strings. |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "build/buildflag.h" | 10 #include "build/buildflag.h" |
| (...skipping 2588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2599 // tiles on the New Tab Page (that originate from synced history). | 2599 // tiles on the New Tab Page (that originate from synced history). |
| 2600 extern const char kEnableNtpMostLikelyFaviconsFromServerDescription[]; | 2600 extern const char kEnableNtpMostLikelyFaviconsFromServerDescription[]; |
| 2601 | 2601 |
| 2602 // Name for the flag to enable the settings entry for content suggestions. | 2602 // Name for the flag to enable the settings entry for content suggestions. |
| 2603 extern const char kEnableContentSuggestionsSettingsName[]; | 2603 extern const char kEnableContentSuggestionsSettingsName[]; |
| 2604 | 2604 |
| 2605 // Description for the flag to enable the settings entry for content | 2605 // Description for the flag to enable the settings entry for content |
| 2606 // suggestions. | 2606 // suggestions. |
| 2607 extern const char kEnableContentSuggestionsSettingsDescription[]; | 2607 extern const char kEnableContentSuggestionsSettingsDescription[]; |
| 2608 | 2608 |
| 2609 // Name for the flag to enable showing the summary for content suggestions. |
| 2610 extern const char kEnableContentSuggestionsShowSummaryName[]; |
| 2611 |
| 2612 // Description for the flag to enable showing the summary for content |
| 2613 // suggestions. |
| 2614 extern const char kEnableContentSuggestionsShowSummaryDescription[]; |
| 2615 |
| 2609 // Name for the flag to enable server-side suggestions on the New Tab Page. | 2616 // Name for the flag to enable server-side suggestions on the New Tab Page. |
| 2610 extern const char kEnableNtpRemoteSuggestionsName[]; | 2617 extern const char kEnableNtpRemoteSuggestionsName[]; |
| 2611 | 2618 |
| 2612 // Description for the flag to enable server-side suggestions on the New Tab | 2619 // Description for the flag to enable server-side suggestions on the New Tab |
| 2613 // Page. | 2620 // Page. |
| 2614 extern const char kEnableNtpRemoteSuggestionsDescription[]; | 2621 extern const char kEnableNtpRemoteSuggestionsDescription[]; |
| 2615 | 2622 |
| 2616 // Name for the flag to enable suggestions for recently viewed tabs, which were | 2623 // Name for the flag to enable suggestions for recently viewed tabs, which were |
| 2617 // captured offline, on the New Tab page. | 2624 // captured offline, on the New Tab page. |
| 2618 extern const char kEnableNtpRecentOfflineTabSuggestionsName[]; | 2625 extern const char kEnableNtpRecentOfflineTabSuggestionsName[]; |
| (...skipping 784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3403 // a hard-reload. | 3410 // a hard-reload. |
| 3404 extern const char kLocationHardReloadDescription[]; | 3411 extern const char kLocationHardReloadDescription[]; |
| 3405 | 3412 |
| 3406 // Name and description for the capture-thumbnail-on-load-finished flag. | 3413 // Name and description for the capture-thumbnail-on-load-finished flag. |
| 3407 extern const char kCaptureThumbnailOnLoadFinishedName[]; | 3414 extern const char kCaptureThumbnailOnLoadFinishedName[]; |
| 3408 extern const char kCaptureThumbnailOnLoadFinishedDescription[]; | 3415 extern const char kCaptureThumbnailOnLoadFinishedDescription[]; |
| 3409 | 3416 |
| 3410 } // namespace flag_descriptions | 3417 } // namespace flag_descriptions |
| 3411 | 3418 |
| 3412 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3419 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |