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 1267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1278 "wallet-service-use-prod", | 1278 "wallet-service-use-prod", |
1279 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_NAME, | 1279 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_NAME, |
1280 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_DESCRIPTION, | 1280 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_DESCRIPTION, |
1281 kOsCrOS | kOsWin, | 1281 kOsCrOS | kOsWin, |
1282 SINGLE_VALUE_TYPE(autofill::switches::kWalletServiceUseProd) | 1282 SINGLE_VALUE_TYPE(autofill::switches::kWalletServiceUseProd) |
1283 }, | 1283 }, |
1284 { | 1284 { |
1285 "enable-interactive-autocomplete", | 1285 "enable-interactive-autocomplete", |
1286 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_NAME, | 1286 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_NAME, |
1287 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_DESCRIPTION, | 1287 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_DESCRIPTION, |
1288 kOsWin | kOsCrOS | kOsAndroid | kOsMac, | 1288 kOsWin | kOsCrOS | kOsMac, |
1289 ENABLE_DISABLE_VALUE_TYPE( | 1289 ENABLE_DISABLE_VALUE_TYPE( |
1290 autofill::switches::kEnableInteractiveAutocomplete, | 1290 autofill::switches::kEnableInteractiveAutocomplete, |
1291 autofill::switches::kDisableInteractiveAutocomplete) | 1291 autofill::switches::kDisableInteractiveAutocomplete) |
1292 }, | 1292 }, |
1293 #if defined(USE_AURA) | 1293 #if defined(USE_AURA) |
1294 { | 1294 { |
1295 "overscroll-history-navigation", | 1295 "overscroll-history-navigation", |
1296 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_NAME, | 1296 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_NAME, |
1297 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_DESCRIPTION, | 1297 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_DESCRIPTION, |
1298 kOsAll, | 1298 kOsAll, |
(...skipping 820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2119 } | 2119 } |
2120 | 2120 |
2121 const Experiment* GetExperiments(size_t* count) { | 2121 const Experiment* GetExperiments(size_t* count) { |
2122 *count = num_experiments; | 2122 *count = num_experiments; |
2123 return experiments; | 2123 return experiments; |
2124 } | 2124 } |
2125 | 2125 |
2126 } // namespace testing | 2126 } // namespace testing |
2127 | 2127 |
2128 } // namespace about_flags | 2128 } // namespace about_flags |
OLD | NEW |