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 3142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3153 extern const char kEnableImeMenuDescription[]; | 3153 extern const char kEnableImeMenuDescription[]; |
3154 | 3154 |
3155 // Name of the about: flag for enabling emoji, handwriting and voice input on | 3155 // Name of the about: flag for enabling emoji, handwriting and voice input on |
3156 // opt-in IME menu. | 3156 // opt-in IME menu. |
3157 extern const char kEnableEhvInputName[]; | 3157 extern const char kEnableEhvInputName[]; |
3158 | 3158 |
3159 // Description of the about: flag enabling emoji, handwriting and voice input on | 3159 // Description of the about: flag enabling emoji, handwriting and voice input on |
3160 // opt-in IME menu. | 3160 // opt-in IME menu. |
3161 extern const char kEnableEhvInputDescription[]; | 3161 extern const char kEnableEhvInputDescription[]; |
3162 | 3162 |
| 3163 // Name of the about: flag for enabling encryption migratoin, which ensures the |
| 3164 // user's cryptohome is encrypted by ext4 dircrypto instead of ecryptfs. |
| 3165 extern const char kEnableEncryptionMigrationName[]; |
| 3166 |
| 3167 // Description of the about: flag for enabling encryption migratoin. |
| 3168 extern const char kEnableEncryptionMigrationDescription[]; |
| 3169 |
3163 #endif // #if defined(OS_CHROMEOS) | 3170 #endif // #if defined(OS_CHROMEOS) |
3164 | 3171 |
3165 } // namespace flag_descriptions | 3172 } // namespace flag_descriptions |
3166 | 3173 |
3167 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3174 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
OLD | NEW |