| 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 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 388 | 388 |
| 389 extern const char kHostedAppShimCreationName[]; | 389 extern const char kHostedAppShimCreationName[]; |
| 390 extern const char kHostedAppShimCreationDescription[]; | 390 extern const char kHostedAppShimCreationDescription[]; |
| 391 | 391 |
| 392 extern const char kIconNtpName[]; | 392 extern const char kIconNtpName[]; |
| 393 extern const char kIconNtpDescription[]; | 393 extern const char kIconNtpDescription[]; |
| 394 | 394 |
| 395 extern const char kIgnoreGpuBlacklistName[]; | 395 extern const char kIgnoreGpuBlacklistName[]; |
| 396 extern const char kIgnoreGpuBlacklistDescription[]; | 396 extern const char kIgnoreGpuBlacklistDescription[]; |
| 397 | 397 |
| 398 extern const char kImportantSitesInCbdName[]; |
| 399 extern const char kImportantSitesInCbdDescription[]; |
| 400 |
| 398 extern const char kInertVisualViewportName[]; | 401 extern const char kInertVisualViewportName[]; |
| 399 extern const char kInertVisualViewportDescription[]; | 402 extern const char kInertVisualViewportDescription[]; |
| 400 | 403 |
| 401 extern const char kJavascriptHarmonyName[]; | 404 extern const char kJavascriptHarmonyName[]; |
| 402 extern const char kJavascriptHarmonyDescription[]; | 405 extern const char kJavascriptHarmonyDescription[]; |
| 403 | 406 |
| 404 extern const char kJavascriptHarmonyShippingName[]; | 407 extern const char kJavascriptHarmonyShippingName[]; |
| 405 extern const char kJavascriptHarmonyShippingDescription[]; | 408 extern const char kJavascriptHarmonyShippingDescription[]; |
| 406 | 409 |
| 407 extern const char kLcdTextName[]; | 410 extern const char kLcdTextName[]; |
| (...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 939 extern const char kEnableWebNfcName[]; | 942 extern const char kEnableWebNfcName[]; |
| 940 extern const char kEnableWebNfcDescription[]; | 943 extern const char kEnableWebNfcDescription[]; |
| 941 | 944 |
| 942 extern const char kEnableWebPaymentsSingleAppUiSkipName[]; | 945 extern const char kEnableWebPaymentsSingleAppUiSkipName[]; |
| 943 extern const char kEnableWebPaymentsSingleAppUiSkipDescription[]; | 946 extern const char kEnableWebPaymentsSingleAppUiSkipDescription[]; |
| 944 | 947 |
| 945 extern const char kHerbPrototypeChoicesName[]; | 948 extern const char kHerbPrototypeChoicesName[]; |
| 946 extern const char kHerbPrototypeChoicesDescription[]; | 949 extern const char kHerbPrototypeChoicesDescription[]; |
| 947 extern const char kHerbPrototypeFlavorElderberry[]; | 950 extern const char kHerbPrototypeFlavorElderberry[]; |
| 948 | 951 |
| 949 extern const char kImportantSitesInCbdName[]; | |
| 950 extern const char kImportantSitesInCbdDescription[]; | |
| 951 | |
| 952 extern const char kLsdPermissionPromptName[]; | 952 extern const char kLsdPermissionPromptName[]; |
| 953 extern const char kLsdPermissionPromptDescription[]; | 953 extern const char kLsdPermissionPromptDescription[]; |
| 954 | 954 |
| 955 extern const char kMediaDocumentDownloadButtonName[]; | 955 extern const char kMediaDocumentDownloadButtonName[]; |
| 956 extern const char kMediaDocumentDownloadButtonDescription[]; | 956 extern const char kMediaDocumentDownloadButtonDescription[]; |
| 957 | 957 |
| 958 extern const char kMediaScreenCaptureName[]; | 958 extern const char kMediaScreenCaptureName[]; |
| 959 extern const char kMediaScreenCaptureDescription[]; | 959 extern const char kMediaScreenCaptureDescription[]; |
| 960 | 960 |
| 961 extern const char kModalPermissionPromptsName[]; | 961 extern const char kModalPermissionPromptsName[]; |
| (...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1450 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1450 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1451 | 1451 |
| 1452 // ============================================================================ | 1452 // ============================================================================ |
| 1453 // Don't just add flags to the end, put them in the right section in | 1453 // Don't just add flags to the end, put them in the right section in |
| 1454 // alphabetical order. See top instructions for more. | 1454 // alphabetical order. See top instructions for more. |
| 1455 // ============================================================================ | 1455 // ============================================================================ |
| 1456 | 1456 |
| 1457 } // namespace flag_descriptions | 1457 } // namespace flag_descriptions |
| 1458 | 1458 |
| 1459 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1459 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |