| 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 1366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1377 SINGLE_VALUE_TYPE(app_list::switches::kResetAppListInstallState)}, | 1377 SINGLE_VALUE_TYPE(app_list::switches::kResetAppListInstallState)}, |
| 1378 #endif // BUILDFLAG(ENABLE_APP_LIST) | 1378 #endif // BUILDFLAG(ENABLE_APP_LIST) |
| 1379 #if defined(OS_ANDROID) | 1379 #if defined(OS_ANDROID) |
| 1380 {"enable-special-locale", flag_descriptions::kEnableSpecialLocaleName, | 1380 {"enable-special-locale", flag_descriptions::kEnableSpecialLocaleName, |
| 1381 flag_descriptions::kEnableSpecialLocaleDescription, kOsAndroid, | 1381 flag_descriptions::kEnableSpecialLocaleDescription, kOsAndroid, |
| 1382 FEATURE_VALUE_TYPE(chrome::android::kSpecialLocaleFeature)}, | 1382 FEATURE_VALUE_TYPE(chrome::android::kSpecialLocaleFeature)}, |
| 1383 {"enable-accessibility-tab-switcher", | 1383 {"enable-accessibility-tab-switcher", |
| 1384 flag_descriptions::kAccessibilityTabSwitcherName, | 1384 flag_descriptions::kAccessibilityTabSwitcherName, |
| 1385 flag_descriptions::kAccessibilityTabSwitcherDescription, kOsAndroid, | 1385 flag_descriptions::kAccessibilityTabSwitcherDescription, kOsAndroid, |
| 1386 SINGLE_VALUE_TYPE(switches::kEnableAccessibilityTabSwitcher)}, | 1386 SINGLE_VALUE_TYPE(switches::kEnableAccessibilityTabSwitcher)}, |
| 1387 {"enable-android-autofill-accessibility", |
| 1388 flag_descriptions::kAndroidAutofillAccessibilityName, |
| 1389 flag_descriptions::kAndroidAutofillAccessibilityDescription, kOsAndroid, |
| 1390 FEATURE_VALUE_TYPE(features::kAndroidAutofillAccessibility)}, |
| 1387 {"enable-physical-web", flag_descriptions::kEnablePhysicalWebName, | 1391 {"enable-physical-web", flag_descriptions::kEnablePhysicalWebName, |
| 1388 flag_descriptions::kEnablePhysicalWebDescription, kOsAndroid, | 1392 flag_descriptions::kEnablePhysicalWebDescription, kOsAndroid, |
| 1389 FEATURE_VALUE_TYPE(chrome::android::kPhysicalWebFeature)}, | 1393 FEATURE_VALUE_TYPE(chrome::android::kPhysicalWebFeature)}, |
| 1390 #endif // OS_ANDROID | 1394 #endif // OS_ANDROID |
| 1391 {"enable-zero-copy", flag_descriptions::kZeroCopyName, | 1395 {"enable-zero-copy", flag_descriptions::kZeroCopyName, |
| 1392 flag_descriptions::kZeroCopyDescription, kOsAll, | 1396 flag_descriptions::kZeroCopyDescription, kOsAll, |
| 1393 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableZeroCopy, | 1397 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableZeroCopy, |
| 1394 switches::kDisableZeroCopy)}, | 1398 switches::kDisableZeroCopy)}, |
| 1395 #if defined(OS_CHROMEOS) | 1399 #if defined(OS_CHROMEOS) |
| 1396 {"enable-first-run-ui-transitions", | 1400 {"enable-first-run-ui-transitions", |
| (...skipping 1293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2690 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; | 2694 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; |
| 2691 | 2695 |
| 2692 const FeatureEntry* GetFeatureEntries(size_t* count) { | 2696 const FeatureEntry* GetFeatureEntries(size_t* count) { |
| 2693 *count = arraysize(kFeatureEntries); | 2697 *count = arraysize(kFeatureEntries); |
| 2694 return kFeatureEntries; | 2698 return kFeatureEntries; |
| 2695 } | 2699 } |
| 2696 | 2700 |
| 2697 } // namespace testing | 2701 } // namespace testing |
| 2698 | 2702 |
| 2699 } // namespace about_flags | 2703 } // namespace about_flags |
| OLD | NEW |