| 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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 | 288 |
| 289 extern const char kExperimentalExtensionApisName[]; | 289 extern const char kExperimentalExtensionApisName[]; |
| 290 extern const char kExperimentalExtensionApisDescription[]; | 290 extern const char kExperimentalExtensionApisDescription[]; |
| 291 | 291 |
| 292 extern const char kExperimentalHotwordHardwareName[]; | 292 extern const char kExperimentalHotwordHardwareName[]; |
| 293 extern const char kExperimentalHotwordHardwareDescription[]; | 293 extern const char kExperimentalHotwordHardwareDescription[]; |
| 294 | 294 |
| 295 extern const char kExperimentalKeyboardLockUiName[]; | 295 extern const char kExperimentalKeyboardLockUiName[]; |
| 296 extern const char kExperimentalKeyboardLockUiDescription[]; | 296 extern const char kExperimentalKeyboardLockUiDescription[]; |
| 297 | 297 |
| 298 extern const char kExperimentalPointerEventName[]; | |
| 299 extern const char kExperimentalPointerEventDescription[]; | |
| 300 | |
| 301 extern const char kExperimentalSecurityFeaturesName[]; | 298 extern const char kExperimentalSecurityFeaturesName[]; |
| 302 extern const char kExperimentalSecurityFeaturesDescription[]; | 299 extern const char kExperimentalSecurityFeaturesDescription[]; |
| 303 | 300 |
| 304 extern const char kExperimentalWebPlatformFeaturesName[]; | 301 extern const char kExperimentalWebPlatformFeaturesName[]; |
| 305 extern const char kExperimentalWebPlatformFeaturesDescription[]; | 302 extern const char kExperimentalWebPlatformFeaturesDescription[]; |
| 306 | 303 |
| 307 extern const char kExtensionContentVerificationName[]; | 304 extern const char kExtensionContentVerificationName[]; |
| 308 extern const char kExtensionContentVerificationDescription[]; | 305 extern const char kExtensionContentVerificationDescription[]; |
| 309 extern const char kExtensionContentVerificationBootstrap[]; | 306 extern const char kExtensionContentVerificationBootstrap[]; |
| 310 extern const char kExtensionContentVerificationEnforce[]; | 307 extern const char kExtensionContentVerificationEnforce[]; |
| (...skipping 1189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1500 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1497 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1501 | 1498 |
| 1502 // ============================================================================ | 1499 // ============================================================================ |
| 1503 // Don't just add flags to the end, put them in the right section in | 1500 // Don't just add flags to the end, put them in the right section in |
| 1504 // alphabetical order. See top instructions for more. | 1501 // alphabetical order. See top instructions for more. |
| 1505 // ============================================================================ | 1502 // ============================================================================ |
| 1506 | 1503 |
| 1507 } // namespace flag_descriptions | 1504 } // namespace flag_descriptions |
| 1508 | 1505 |
| 1509 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1506 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |