| 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 <iterator> | 7 #include <iterator> |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 1287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1298 ENABLE_DISABLE_VALUE_TYPE(keyboard::switches::kEnableInputView, | 1298 ENABLE_DISABLE_VALUE_TYPE(keyboard::switches::kEnableInputView, |
| 1299 keyboard::switches::kDisableInputView) | 1299 keyboard::switches::kDisableInputView) |
| 1300 }, | 1300 }, |
| 1301 { | 1301 { |
| 1302 "enable-experimental-input-view-features", | 1302 "enable-experimental-input-view-features", |
| 1303 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_NAME, | 1303 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_NAME, |
| 1304 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_DESCRIPTION, | 1304 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_DESCRIPTION, |
| 1305 kOsCrOS, | 1305 kOsCrOS, |
| 1306 SINGLE_VALUE_TYPE(keyboard::switches::kEnableExperimentalInputViewFeatures) | 1306 SINGLE_VALUE_TYPE(keyboard::switches::kEnableExperimentalInputViewFeatures) |
| 1307 }, | 1307 }, |
| 1308 { |
| 1309 "auto-virtual-keyboard", |
| 1310 IDS_FLAGS_AUTO_VIRTUAL_KEYBOARD_NAME, |
| 1311 IDS_FLAGS_AUTO_VIRTUAL_KEYBOARD_DESCRIPTION, |
| 1312 kOsCrOS, |
| 1313 SINGLE_VALUE_TYPE(keyboard::switches::kAutoVirtualKeyboard) |
| 1314 }, |
| 1308 #endif | 1315 #endif |
| 1309 { | 1316 { |
| 1310 "enable-simple-cache-backend", | 1317 "enable-simple-cache-backend", |
| 1311 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_NAME, | 1318 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_NAME, |
| 1312 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_DESCRIPTION, | 1319 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_DESCRIPTION, |
| 1313 kOsWin | kOsMac | kOsLinux | kOsCrOS, | 1320 kOsWin | kOsMac | kOsLinux | kOsCrOS, |
| 1314 MULTI_VALUE_TYPE(kSimpleCacheBackendChoices) | 1321 MULTI_VALUE_TYPE(kSimpleCacheBackendChoices) |
| 1315 }, | 1322 }, |
| 1316 { | 1323 { |
| 1317 "enable-tcp-fast-open", | 1324 "enable-tcp-fast-open", |
| (...skipping 1206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2524 } | 2531 } |
| 2525 | 2532 |
| 2526 const Experiment* GetExperiments(size_t* count) { | 2533 const Experiment* GetExperiments(size_t* count) { |
| 2527 *count = num_experiments; | 2534 *count = num_experiments; |
| 2528 return experiments; | 2535 return experiments; |
| 2529 } | 2536 } |
| 2530 | 2537 |
| 2531 } // namespace testing | 2538 } // namespace testing |
| 2532 | 2539 |
| 2533 } // namespace about_flags | 2540 } // namespace about_flags |
| OLD | NEW |