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 2460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2471 | 2471 |
2472 // Description of the Android Wallpapers App flag. | 2472 // Description of the Android Wallpapers App flag. |
2473 extern const char kEnableAndroidWallpapersAppDescription[]; | 2473 extern const char kEnableAndroidWallpapersAppDescription[]; |
2474 | 2474 |
2475 // Name of the touch support for screen magnifier flag. | 2475 // Name of the touch support for screen magnifier flag. |
2476 extern const char kEnableTouchSupportForScreenMagnifierName[]; | 2476 extern const char kEnableTouchSupportForScreenMagnifierName[]; |
2477 | 2477 |
2478 // Description of the touch support for screen magnifier flag. | 2478 // Description of the touch support for screen magnifier flag. |
2479 extern const char kEnableTouchSupportForScreenMagnifierDescription[]; | 2479 extern const char kEnableTouchSupportForScreenMagnifierDescription[]; |
2480 | 2480 |
| 2481 // Name of zip archiver on files app flag. |
| 2482 extern const char kEnableZipArchiverOnFileManagerName[]; |
| 2483 |
| 2484 // Description of zip archiver on files app flag. |
| 2485 extern const char kEnableZipArchiverOnFileManagerDescription[]; |
| 2486 |
2481 #endif // defined(OS_CHROMEOS) | 2487 #endif // defined(OS_CHROMEOS) |
2482 | 2488 |
2483 #if defined(OS_ANDROID) | 2489 #if defined(OS_ANDROID) |
2484 | 2490 |
2485 // Name for the flag to choose a default category order for content suggestions, | 2491 // Name for the flag to choose a default category order for content suggestions, |
2486 // e.g. on the New Tab page. | 2492 // e.g. on the New Tab page. |
2487 extern const char kContentSuggestionsCategoryOrderName[]; | 2493 extern const char kContentSuggestionsCategoryOrderName[]; |
2488 | 2494 |
2489 // Description for the flag to choose a default category order for content | 2495 // Description for the flag to choose a default category order for content |
2490 // suggestions, e.g. on the New Tab page. | 2496 // suggestions, e.g. on the New Tab page. |
(...skipping 692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3183 | 3189 |
3184 // Description of the about: flag enabling emoji, handwriting and voice input on | 3190 // Description of the about: flag enabling emoji, handwriting and voice input on |
3185 // opt-in IME menu. | 3191 // opt-in IME menu. |
3186 extern const char kEnableEhvInputDescription[]; | 3192 extern const char kEnableEhvInputDescription[]; |
3187 | 3193 |
3188 #endif // #if defined(OS_CHROMEOS) | 3194 #endif // #if defined(OS_CHROMEOS) |
3189 | 3195 |
3190 } // namespace flag_descriptions | 3196 } // namespace flag_descriptions |
3191 | 3197 |
3192 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3198 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
OLD | NEW |