| 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 1249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1260 "wallet-service-use-prod", | 1260 "wallet-service-use-prod", |
| 1261 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_NAME, | 1261 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_NAME, |
| 1262 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_DESCRIPTION, | 1262 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_DESCRIPTION, |
| 1263 kOsCrOS | kOsWin, | 1263 kOsCrOS | kOsWin, |
| 1264 SINGLE_VALUE_TYPE(autofill::switches::kWalletServiceUseProd) | 1264 SINGLE_VALUE_TYPE(autofill::switches::kWalletServiceUseProd) |
| 1265 }, | 1265 }, |
| 1266 { | 1266 { |
| 1267 "enable-interactive-autocomplete", | 1267 "enable-interactive-autocomplete", |
| 1268 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_NAME, | 1268 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_NAME, |
| 1269 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_DESCRIPTION, | 1269 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_DESCRIPTION, |
| 1270 kOsWin | kOsCrOS | kOsAndroid, | 1270 kOsWin | kOsCrOS, |
| 1271 SINGLE_VALUE_TYPE(switches::kEnableInteractiveAutocomplete) | 1271 SINGLE_VALUE_TYPE(switches::kEnableInteractiveAutocomplete) |
| 1272 }, | 1272 }, |
| 1273 #if defined(USE_AURA) | 1273 #if defined(USE_AURA) |
| 1274 { | 1274 { |
| 1275 "overscroll-history-navigation", | 1275 "overscroll-history-navigation", |
| 1276 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_NAME, | 1276 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_NAME, |
| 1277 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_DESCRIPTION, | 1277 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_DESCRIPTION, |
| 1278 kOsAll, | 1278 kOsAll, |
| 1279 ENABLE_DISABLE_VALUE_TYPE_AND_VALUE( | 1279 ENABLE_DISABLE_VALUE_TYPE_AND_VALUE( |
| 1280 switches::kOverscrollHistoryNavigation, "1", | 1280 switches::kOverscrollHistoryNavigation, "1", |
| (...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1946 } | 1946 } |
| 1947 | 1947 |
| 1948 const Experiment* GetExperiments(size_t* count) { | 1948 const Experiment* GetExperiments(size_t* count) { |
| 1949 *count = num_experiments; | 1949 *count = num_experiments; |
| 1950 return experiments; | 1950 return experiments; |
| 1951 } | 1951 } |
| 1952 | 1952 |
| 1953 } // namespace testing | 1953 } // namespace testing |
| 1954 | 1954 |
| 1955 } // namespace about_flags | 1955 } // namespace about_flags |
| OLD | NEW |