| 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 2463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2474 extern const char kContentSuggestionsCategoryRankerDescription[]; | 2474 extern const char kContentSuggestionsCategoryRankerDescription[]; |
| 2475 | 2475 |
| 2476 // Name for the flag to enable increased visibilty for snippets on the New Tab | 2476 // Name for the flag to enable increased visibilty for snippets on the New Tab |
| 2477 // Page. | 2477 // Page. |
| 2478 extern const char kEnableNtpSnippetsVisibilityName[]; | 2478 extern const char kEnableNtpSnippetsVisibilityName[]; |
| 2479 | 2479 |
| 2480 // Description for the flag to enable increased visibility for recently viewed | 2480 // Description for the flag to enable increased visibility for recently viewed |
| 2481 // tabs on the New Tab page. | 2481 // tabs on the New Tab page. |
| 2482 extern const char kEnableNtpSnippetsVisibilityDescription[]; | 2482 extern const char kEnableNtpSnippetsVisibilityDescription[]; |
| 2483 | 2483 |
| 2484 // Name for the flag to enable new favicon server for content suggestions on the |
| 2485 // New Tab Page. |
| 2486 extern const char kEnableContentSuggestionsNewFaviconServerName[]; |
| 2487 |
| 2488 // Description for the flag to enable new favicon server for content suggestions |
| 2489 // on the New Tab Page. |
| 2490 extern const char kEnableContentSuggestionsNewFaviconServerDescription[]; |
| 2491 |
| 2484 // Name for the flag to enable server-side suggestions on the New Tab Page. | 2492 // Name for the flag to enable server-side suggestions on the New Tab Page. |
| 2485 extern const char kEnableNtpRemoteSuggestionsName[]; | 2493 extern const char kEnableNtpRemoteSuggestionsName[]; |
| 2486 | 2494 |
| 2487 // Description for the flag to enable server-side suggestions on the New Tab | 2495 // Description for the flag to enable server-side suggestions on the New Tab |
| 2488 // Page. | 2496 // Page. |
| 2489 extern const char kEnableNtpRemoteSuggestionsDescription[]; | 2497 extern const char kEnableNtpRemoteSuggestionsDescription[]; |
| 2490 | 2498 |
| 2491 // Name for the flag to enable suggestions for recently viewed tabs, which were | 2499 // Name for the flag to enable suggestions for recently viewed tabs, which were |
| 2492 // captured offline, on the New Tab page. | 2500 // captured offline, on the New Tab page. |
| 2493 extern const char kEnableNtpRecentOfflineTabSuggestionsName[]; | 2501 extern const char kEnableNtpRecentOfflineTabSuggestionsName[]; |
| (...skipping 653 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3147 | 3155 |
| 3148 // Description of the about: flag enabling emoji, handwriting and voice input on | 3156 // Description of the about: flag enabling emoji, handwriting and voice input on |
| 3149 // opt-in IME menu. | 3157 // opt-in IME menu. |
| 3150 extern const char kEnableEhvInputDescription[]; | 3158 extern const char kEnableEhvInputDescription[]; |
| 3151 | 3159 |
| 3152 #endif // #if defined(OS_CHROMEOS) | 3160 #endif // #if defined(OS_CHROMEOS) |
| 3153 | 3161 |
| 3154 } // namespace flag_descriptions | 3162 } // namespace flag_descriptions |
| 3155 | 3163 |
| 3156 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3164 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |