| 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 1229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1240 "wallet-service-use-prod", | 1240 "wallet-service-use-prod", |
| 1241 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_NAME, | 1241 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_NAME, |
| 1242 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_DESCRIPTION, | 1242 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_DESCRIPTION, |
| 1243 kOsCrOS | kOsWin, | 1243 kOsCrOS | kOsWin, |
| 1244 SINGLE_VALUE_TYPE(autofill::switches::kWalletServiceUseProd) | 1244 SINGLE_VALUE_TYPE(autofill::switches::kWalletServiceUseProd) |
| 1245 }, | 1245 }, |
| 1246 { | 1246 { |
| 1247 "enable-interactive-autocomplete", | 1247 "enable-interactive-autocomplete", |
| 1248 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_NAME, | 1248 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_NAME, |
| 1249 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_DESCRIPTION, | 1249 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_DESCRIPTION, |
| 1250 kOsWin | kOsCrOS, | 1250 kOsWin | kOsCrOS | kOsAndroid, |
| 1251 ENABLE_DISABLE_VALUE_TYPE( | 1251 ENABLE_DISABLE_VALUE_TYPE( |
| 1252 autofill::switches::kEnableInteractiveAutocomplete, | 1252 autofill::switches::kEnableInteractiveAutocomplete, |
| 1253 autofill::switches::kDisableInteractiveAutocomplete) | 1253 autofill::switches::kDisableInteractiveAutocomplete) |
| 1254 }, | 1254 }, |
| 1255 #if defined(USE_AURA) | 1255 #if defined(USE_AURA) |
| 1256 { | 1256 { |
| 1257 "overscroll-history-navigation", | 1257 "overscroll-history-navigation", |
| 1258 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_NAME, | 1258 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_NAME, |
| 1259 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_DESCRIPTION, | 1259 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_DESCRIPTION, |
| 1260 kOsAll, | 1260 kOsAll, |
| (...skipping 683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1944 } | 1944 } |
| 1945 | 1945 |
| 1946 const Experiment* GetExperiments(size_t* count) { | 1946 const Experiment* GetExperiments(size_t* count) { |
| 1947 *count = num_experiments; | 1947 *count = num_experiments; |
| 1948 return experiments; | 1948 return experiments; |
| 1949 } | 1949 } |
| 1950 | 1950 |
| 1951 } // namespace testing | 1951 } // namespace testing |
| 1952 | 1952 |
| 1953 } // namespace about_flags | 1953 } // namespace about_flags |
| OLD | NEW |