| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 | 81 |
| 82 extern const char kCompositedLayerBordersName[]; | 82 extern const char kCompositedLayerBordersName[]; |
| 83 extern const char kCompositedLayerBordersDescription[]; | 83 extern const char kCompositedLayerBordersDescription[]; |
| 84 | 84 |
| 85 extern const char kContextualSuggestionsCarouselName[]; | 85 extern const char kContextualSuggestionsCarouselName[]; |
| 86 extern const char kContextualSuggestionsCarouselDescription[]; | 86 extern const char kContextualSuggestionsCarouselDescription[]; |
| 87 | 87 |
| 88 extern const char kCreditCardAssistName[]; | 88 extern const char kCreditCardAssistName[]; |
| 89 extern const char kCreditCardAssistDescription[]; | 89 extern const char kCreditCardAssistDescription[]; |
| 90 | 90 |
| 91 extern const char kCrosCompUpdatesName[]; | |
| 92 extern const char kCrosCompUpdatesDescription[]; | |
| 93 | |
| 94 extern const char kCrossProcessGuestViewIsolationName[]; | 91 extern const char kCrossProcessGuestViewIsolationName[]; |
| 95 extern const char kCrossProcessGuestViewIsolationDescription[]; | 92 extern const char kCrossProcessGuestViewIsolationDescription[]; |
| 96 | 93 |
| 97 extern const char kDataReductionProxyCarrierTestName[]; | 94 extern const char kDataReductionProxyCarrierTestName[]; |
| 98 extern const char kDataReductionProxyCarrierTestDescription[]; | 95 extern const char kDataReductionProxyCarrierTestDescription[]; |
| 99 | 96 |
| 100 extern const char kDataReductionProxyLoFiName[]; | 97 extern const char kDataReductionProxyLoFiName[]; |
| 101 extern const char kDataReductionProxyLoFiDescription[]; | 98 extern const char kDataReductionProxyLoFiDescription[]; |
| 102 extern const char kDataReductionProxyLoFiAlwaysOn[]; | 99 extern const char kDataReductionProxyLoFiAlwaysOn[]; |
| 103 extern const char kDataReductionProxyLoFiCellularOnly[]; | 100 extern const char kDataReductionProxyLoFiCellularOnly[]; |
| (...skipping 1346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1450 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1447 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1451 | 1448 |
| 1452 // ============================================================================ | 1449 // ============================================================================ |
| 1453 // Don't just add flags to the end, put them in the right section in | 1450 // Don't just add flags to the end, put them in the right section in |
| 1454 // alphabetical order. See top instructions for more. | 1451 // alphabetical order. See top instructions for more. |
| 1455 // ============================================================================ | 1452 // ============================================================================ |
| 1456 | 1453 |
| 1457 } // namespace flag_descriptions | 1454 } // namespace flag_descriptions |
| 1458 | 1455 |
| 1459 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1456 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |