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 1156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1167 }, | 1167 }, |
1168 { | 1168 { |
1169 "wallet-service-use-sandbox", | 1169 "wallet-service-use-sandbox", |
1170 IDS_FLAGS_WALLET_SERVICE_USE_SANDBOX_NAME, | 1170 IDS_FLAGS_WALLET_SERVICE_USE_SANDBOX_NAME, |
1171 IDS_FLAGS_WALLET_SERVICE_USE_SANDBOX_DESCRIPTION, | 1171 IDS_FLAGS_WALLET_SERVICE_USE_SANDBOX_DESCRIPTION, |
1172 kOsCrOS | kOsWin | kOsMac, | 1172 kOsCrOS | kOsWin | kOsMac, |
1173 ENABLE_DISABLE_VALUE_TYPE_AND_VALUE( | 1173 ENABLE_DISABLE_VALUE_TYPE_AND_VALUE( |
1174 autofill::switches::kWalletServiceUseSandbox, "1", | 1174 autofill::switches::kWalletServiceUseSandbox, "1", |
1175 autofill::switches::kWalletServiceUseSandbox, "0") | 1175 autofill::switches::kWalletServiceUseSandbox, "0") |
1176 }, | 1176 }, |
1177 { | |
1178 "enable-interactive-autocomplete", | |
1179 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_NAME, | |
1180 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_DESCRIPTION, | |
1181 kOsWin | kOsCrOS | kOsAndroid | kOsMac, | |
1182 ENABLE_DISABLE_VALUE_TYPE( | |
1183 autofill::switches::kEnableInteractiveAutocomplete, | |
1184 autofill::switches::kDisableInteractiveAutocomplete) | |
1185 }, | |
1186 #if defined(USE_AURA) | 1177 #if defined(USE_AURA) |
1187 { | 1178 { |
1188 "overscroll-history-navigation", | 1179 "overscroll-history-navigation", |
1189 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_NAME, | 1180 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_NAME, |
1190 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_DESCRIPTION, | 1181 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_DESCRIPTION, |
1191 kOsAll, | 1182 kOsAll, |
1192 MULTI_VALUE_TYPE(kOverscrollHistoryNavigationChoices) | 1183 MULTI_VALUE_TYPE(kOverscrollHistoryNavigationChoices) |
1193 }, | 1184 }, |
1194 #endif | 1185 #endif |
1195 { | 1186 { |
(...skipping 1166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2362 } | 2353 } |
2363 | 2354 |
2364 const Experiment* GetExperiments(size_t* count) { | 2355 const Experiment* GetExperiments(size_t* count) { |
2365 *count = num_experiments; | 2356 *count = num_experiments; |
2366 return experiments; | 2357 return experiments; |
2367 } | 2358 } |
2368 | 2359 |
2369 } // namespace testing | 2360 } // namespace testing |
2370 | 2361 |
2371 } // namespace about_flags | 2362 } // namespace about_flags |
OLD | NEW |