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 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1098 password_manager::switches::kDisableAndroidPasswordLink) | 1098 password_manager::switches::kDisableAndroidPasswordLink) |
1099 }, | 1099 }, |
1100 { | 1100 { |
1101 "enable-deferred-image-decoding", | 1101 "enable-deferred-image-decoding", |
1102 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_NAME, | 1102 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_NAME, |
1103 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_DESCRIPTION, | 1103 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_DESCRIPTION, |
1104 kOsMac | kOsLinux | kOsCrOS, | 1104 kOsMac | kOsLinux | kOsCrOS, |
1105 SINGLE_VALUE_TYPE(switches::kEnableDeferredImageDecoding) | 1105 SINGLE_VALUE_TYPE(switches::kEnableDeferredImageDecoding) |
1106 }, | 1106 }, |
1107 { | 1107 { |
1108 "performance-monitor-gathering", | |
1109 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_NAME, | |
1110 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_DESCRIPTION, | |
1111 kOsAll, | |
1112 SINGLE_VALUE_TYPE(switches::kPerformanceMonitorGathering) | |
1113 }, | |
1114 { | |
1115 "wallet-service-use-sandbox", | 1108 "wallet-service-use-sandbox", |
1116 IDS_FLAGS_WALLET_SERVICE_USE_SANDBOX_NAME, | 1109 IDS_FLAGS_WALLET_SERVICE_USE_SANDBOX_NAME, |
1117 IDS_FLAGS_WALLET_SERVICE_USE_SANDBOX_DESCRIPTION, | 1110 IDS_FLAGS_WALLET_SERVICE_USE_SANDBOX_DESCRIPTION, |
1118 kOsAndroid | kOsDesktop, | 1111 kOsAndroid | kOsDesktop, |
1119 ENABLE_DISABLE_VALUE_TYPE_AND_VALUE( | 1112 ENABLE_DISABLE_VALUE_TYPE_AND_VALUE( |
1120 autofill::switches::kWalletServiceUseSandbox, "1", | 1113 autofill::switches::kWalletServiceUseSandbox, "1", |
1121 autofill::switches::kWalletServiceUseSandbox, "0") | 1114 autofill::switches::kWalletServiceUseSandbox, "0") |
1122 }, | 1115 }, |
1123 #if defined(USE_AURA) | 1116 #if defined(USE_AURA) |
1124 { | 1117 { |
(...skipping 1359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2484 } | 2477 } |
2485 | 2478 |
2486 const Experiment* GetExperiments(size_t* count) { | 2479 const Experiment* GetExperiments(size_t* count) { |
2487 *count = num_experiments; | 2480 *count = num_experiments; |
2488 return experiments; | 2481 return experiments; |
2489 } | 2482 } |
2490 | 2483 |
2491 } // namespace testing | 2484 } // namespace testing |
2492 | 2485 |
2493 } // namespace about_flags | 2486 } // namespace about_flags |
OLD | NEW |