| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "chrome/browser/about_flags.h" | 5 #include "chrome/browser/about_flags.h" |
| 6 | 6 |
| 7 #include <iterator> | 7 #include <iterator> |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 1597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1608 IDS_FLAGS_DISTANCE_FIELD_TEXT_NAME, | 1608 IDS_FLAGS_DISTANCE_FIELD_TEXT_NAME, |
| 1609 IDS_FLAGS_DISTANCE_FIELD_TEXT_DESCRIPTION, | 1609 IDS_FLAGS_DISTANCE_FIELD_TEXT_DESCRIPTION, |
| 1610 kOsAll, | 1610 kOsAll, |
| 1611 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableDistanceFieldText, | 1611 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableDistanceFieldText, |
| 1612 switches::kDisableDistanceFieldText)}, | 1612 switches::kDisableDistanceFieldText)}, |
| 1613 {"extension-content-verification", | 1613 {"extension-content-verification", |
| 1614 IDS_FLAGS_EXTENSION_CONTENT_VERIFICATION_NAME, | 1614 IDS_FLAGS_EXTENSION_CONTENT_VERIFICATION_NAME, |
| 1615 IDS_FLAGS_EXTENSION_CONTENT_VERIFICATION_DESCRIPTION, | 1615 IDS_FLAGS_EXTENSION_CONTENT_VERIFICATION_DESCRIPTION, |
| 1616 kOsDesktop, | 1616 kOsDesktop, |
| 1617 MULTI_VALUE_TYPE(kExtensionContentVerificationChoices)}, | 1617 MULTI_VALUE_TYPE(kExtensionContentVerificationChoices)}, |
| 1618 #if defined(USE_AURA) | |
| 1619 {"text-input-focus-manager", | |
| 1620 IDS_FLAGS_TEXT_INPUT_FOCUS_MANAGER_NAME, | |
| 1621 IDS_FLAGS_TEXT_INPUT_FOCUS_MANAGER_DESCRIPTION, | |
| 1622 kOsCrOS | kOsLinux | kOsWin, | |
| 1623 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableTextInputFocusManager, | |
| 1624 switches::kDisableTextInputFocusManager)}, | |
| 1625 #endif | |
| 1626 #if defined(ENABLE_EXTENSIONS) | 1618 #if defined(ENABLE_EXTENSIONS) |
| 1627 {"extension-active-script-permission", | 1619 {"extension-active-script-permission", |
| 1628 IDS_FLAGS_USER_CONSENT_FOR_EXTENSION_SCRIPTS_NAME, | 1620 IDS_FLAGS_USER_CONSENT_FOR_EXTENSION_SCRIPTS_NAME, |
| 1629 IDS_FLAGS_USER_CONSENT_FOR_EXTENSION_SCRIPTS_DESCRIPTION, | 1621 IDS_FLAGS_USER_CONSENT_FOR_EXTENSION_SCRIPTS_DESCRIPTION, |
| 1630 kOsAll, | 1622 kOsAll, |
| 1631 SINGLE_VALUE_TYPE(extensions::switches::kEnableScriptsRequireAction)}, | 1623 SINGLE_VALUE_TYPE(extensions::switches::kEnableScriptsRequireAction)}, |
| 1632 #endif | 1624 #endif |
| 1633 {"answers-in-suggest", | 1625 {"answers-in-suggest", |
| 1634 IDS_FLAGS_ENABLE_ANSWERS_IN_SUGGEST_NAME, | 1626 IDS_FLAGS_ENABLE_ANSWERS_IN_SUGGEST_NAME, |
| 1635 IDS_FLAGS_ENABLE_ANSWERS_IN_SUGGEST_DESCRIPTION, | 1627 IDS_FLAGS_ENABLE_ANSWERS_IN_SUGGEST_DESCRIPTION, |
| (...skipping 966 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2602 } | 2594 } |
| 2603 | 2595 |
| 2604 const Experiment* GetExperiments(size_t* count) { | 2596 const Experiment* GetExperiments(size_t* count) { |
| 2605 *count = num_experiments; | 2597 *count = num_experiments; |
| 2606 return experiments; | 2598 return experiments; |
| 2607 } | 2599 } |
| 2608 | 2600 |
| 2609 } // namespace testing | 2601 } // namespace testing |
| 2610 | 2602 |
| 2611 } // namespace about_flags | 2603 } // namespace about_flags |
| OLD | NEW |