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 2446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2457 | 2457 |
2458 // Description of the Android Wallpapers App flag. | 2458 // Description of the Android Wallpapers App flag. |
2459 extern const char kEnableAndroidWallpapersAppDescription[]; | 2459 extern const char kEnableAndroidWallpapersAppDescription[]; |
2460 | 2460 |
2461 // Name of the touch support for screen magnifier flag. | 2461 // Name of the touch support for screen magnifier flag. |
2462 extern const char kEnableTouchSupportForScreenMagnifierName[]; | 2462 extern const char kEnableTouchSupportForScreenMagnifierName[]; |
2463 | 2463 |
2464 // Description of the touch support for screen magnifier flag. | 2464 // Description of the touch support for screen magnifier flag. |
2465 extern const char kEnableTouchSupportForScreenMagnifierDescription[]; | 2465 extern const char kEnableTouchSupportForScreenMagnifierDescription[]; |
2466 | 2466 |
2467 // Name of zip archiver on files app. | |
yawano
2017/04/06 11:22:13
small nit: "Name of zip archiver on files app flag
| |
2468 extern const char kEnableZipArchiverOnFileManagerName[]; | |
2469 | |
2470 // Description of zip archiver on files app. | |
2471 extern const char kEnableZipArchiverOnFileManagerDescription[]; | |
2472 | |
2467 #endif // defined(OS_CHROMEOS) | 2473 #endif // defined(OS_CHROMEOS) |
2468 | 2474 |
2469 #if defined(OS_ANDROID) | 2475 #if defined(OS_ANDROID) |
2470 | 2476 |
2471 // Name for the flag to choose a default category order for content suggestions, | 2477 // Name for the flag to choose a default category order for content suggestions, |
2472 // e.g. on the New Tab page. | 2478 // e.g. on the New Tab page. |
2473 extern const char kContentSuggestionsCategoryOrderName[]; | 2479 extern const char kContentSuggestionsCategoryOrderName[]; |
2474 | 2480 |
2475 // Description for the flag to choose a default category order for content | 2481 // Description for the flag to choose a default category order for content |
2476 // suggestions, e.g. on the New Tab page. | 2482 // suggestions, e.g. on the New Tab page. |
(...skipping 685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3162 | 3168 |
3163 // Description of the about: flag enabling emoji, handwriting and voice input on | 3169 // Description of the about: flag enabling emoji, handwriting and voice input on |
3164 // opt-in IME menu. | 3170 // opt-in IME menu. |
3165 extern const char kEnableEhvInputDescription[]; | 3171 extern const char kEnableEhvInputDescription[]; |
3166 | 3172 |
3167 #endif // #if defined(OS_CHROMEOS) | 3173 #endif // #if defined(OS_CHROMEOS) |
3168 | 3174 |
3169 } // namespace flag_descriptions | 3175 } // namespace flag_descriptions |
3170 | 3176 |
3171 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3177 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
OLD | NEW |