| 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 1379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1390 SINGLE_VALUE_TYPE(app_list::switches::kResetAppListInstallState)}, | 1390 SINGLE_VALUE_TYPE(app_list::switches::kResetAppListInstallState)}, |
| 1391 #endif // BUILDFLAG(ENABLE_APP_LIST) | 1391 #endif // BUILDFLAG(ENABLE_APP_LIST) |
| 1392 #if defined(OS_ANDROID) | 1392 #if defined(OS_ANDROID) |
| 1393 {"enable-special-locale", flag_descriptions::kEnableSpecialLocaleName, | 1393 {"enable-special-locale", flag_descriptions::kEnableSpecialLocaleName, |
| 1394 flag_descriptions::kEnableSpecialLocaleDescription, kOsAndroid, | 1394 flag_descriptions::kEnableSpecialLocaleDescription, kOsAndroid, |
| 1395 FEATURE_VALUE_TYPE(chrome::android::kSpecialLocaleFeature)}, | 1395 FEATURE_VALUE_TYPE(chrome::android::kSpecialLocaleFeature)}, |
| 1396 {"enable-accessibility-tab-switcher", | 1396 {"enable-accessibility-tab-switcher", |
| 1397 flag_descriptions::kAccessibilityTabSwitcherName, | 1397 flag_descriptions::kAccessibilityTabSwitcherName, |
| 1398 flag_descriptions::kAccessibilityTabSwitcherDescription, kOsAndroid, | 1398 flag_descriptions::kAccessibilityTabSwitcherDescription, kOsAndroid, |
| 1399 SINGLE_VALUE_TYPE(switches::kEnableAccessibilityTabSwitcher)}, | 1399 SINGLE_VALUE_TYPE(switches::kEnableAccessibilityTabSwitcher)}, |
| 1400 {"enable-android-autofill-accessibility", |
| 1401 flag_descriptions::kAndroidAutofillAccessibilityName, |
| 1402 flag_descriptions::kAndroidAutofillAccessibilityDescription, kOsAndroid, |
| 1403 FEATURE_VALUE_TYPE(features::kAndroidAutofillAccessibility)}, |
| 1400 {"enable-physical-web", flag_descriptions::kEnablePhysicalWebName, | 1404 {"enable-physical-web", flag_descriptions::kEnablePhysicalWebName, |
| 1401 flag_descriptions::kEnablePhysicalWebDescription, kOsAndroid, | 1405 flag_descriptions::kEnablePhysicalWebDescription, kOsAndroid, |
| 1402 FEATURE_VALUE_TYPE(chrome::android::kPhysicalWebFeature)}, | 1406 FEATURE_VALUE_TYPE(chrome::android::kPhysicalWebFeature)}, |
| 1403 #endif // OS_ANDROID | 1407 #endif // OS_ANDROID |
| 1404 {"enable-zero-copy", flag_descriptions::kZeroCopyName, | 1408 {"enable-zero-copy", flag_descriptions::kZeroCopyName, |
| 1405 flag_descriptions::kZeroCopyDescription, kOsAll, | 1409 flag_descriptions::kZeroCopyDescription, kOsAll, |
| 1406 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableZeroCopy, | 1410 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableZeroCopy, |
| 1407 switches::kDisableZeroCopy)}, | 1411 switches::kDisableZeroCopy)}, |
| 1408 #if defined(OS_CHROMEOS) | 1412 #if defined(OS_CHROMEOS) |
| 1409 {"enable-first-run-ui-transitions", | 1413 {"enable-first-run-ui-transitions", |
| (...skipping 1287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2697 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; | 2701 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; |
| 2698 | 2702 |
| 2699 const FeatureEntry* GetFeatureEntries(size_t* count) { | 2703 const FeatureEntry* GetFeatureEntries(size_t* count) { |
| 2700 *count = arraysize(kFeatureEntries); | 2704 *count = arraysize(kFeatureEntries); |
| 2701 return kFeatureEntries; | 2705 return kFeatureEntries; |
| 2702 } | 2706 } |
| 2703 | 2707 |
| 2704 } // namespace testing | 2708 } // namespace testing |
| 2705 | 2709 |
| 2706 } // namespace about_flags | 2710 } // namespace about_flags |
| OLD | NEW |