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 <algorithm> | 7 #include <algorithm> |
8 #include <iterator> | 8 #include <iterator> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 1241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1252 "wallet-service-use-prod", | 1252 "wallet-service-use-prod", |
1253 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_NAME, | 1253 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_NAME, |
1254 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_DESCRIPTION, | 1254 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_DESCRIPTION, |
1255 kOsCrOS | kOsWin, | 1255 kOsCrOS | kOsWin, |
1256 SINGLE_VALUE_TYPE(autofill::switches::kWalletServiceUseProd) | 1256 SINGLE_VALUE_TYPE(autofill::switches::kWalletServiceUseProd) |
1257 }, | 1257 }, |
1258 { | 1258 { |
1259 "enable-interactive-autocomplete", | 1259 "enable-interactive-autocomplete", |
1260 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_NAME, | 1260 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_NAME, |
1261 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_DESCRIPTION, | 1261 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_DESCRIPTION, |
1262 kOsWin | kOsCrOS | kOsMac, | 1262 kOsWin | kOsCrOS | kOsAndroid | kOsMac, |
1263 ENABLE_DISABLE_VALUE_TYPE( | 1263 ENABLE_DISABLE_VALUE_TYPE( |
1264 autofill::switches::kEnableInteractiveAutocomplete, | 1264 autofill::switches::kEnableInteractiveAutocomplete, |
1265 autofill::switches::kDisableInteractiveAutocomplete) | 1265 autofill::switches::kDisableInteractiveAutocomplete) |
1266 }, | 1266 }, |
1267 #if defined(USE_AURA) | 1267 #if defined(USE_AURA) |
1268 { | 1268 { |
1269 "overscroll-history-navigation", | 1269 "overscroll-history-navigation", |
1270 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_NAME, | 1270 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_NAME, |
1271 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_DESCRIPTION, | 1271 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_DESCRIPTION, |
1272 kOsAll, | 1272 kOsAll, |
(...skipping 839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2112 } | 2112 } |
2113 | 2113 |
2114 const Experiment* GetExperiments(size_t* count) { | 2114 const Experiment* GetExperiments(size_t* count) { |
2115 *count = num_experiments; | 2115 *count = num_experiments; |
2116 return experiments; | 2116 return experiments; |
2117 } | 2117 } |
2118 | 2118 |
2119 } // namespace testing | 2119 } // namespace testing |
2120 | 2120 |
2121 } // namespace about_flags | 2121 } // namespace about_flags |
OLD | NEW |