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 1321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1332 kOsCrOS, | 1332 kOsCrOS, |
1333 SINGLE_VALUE_TYPE(chromeos::switches::kEnablePhysicalKeyboardAutocorrect) | 1333 SINGLE_VALUE_TYPE(chromeos::switches::kEnablePhysicalKeyboardAutocorrect) |
1334 }, | 1334 }, |
1335 { | 1335 { |
1336 "enable-experimental-input-view-features", | 1336 "enable-experimental-input-view-features", |
1337 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_NAME, | 1337 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_NAME, |
1338 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_DESCRIPTION, | 1338 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_DESCRIPTION, |
1339 kOsCrOS, | 1339 kOsCrOS, |
1340 SINGLE_VALUE_TYPE(keyboard::switches::kEnableExperimentalInputViewFeatures) | 1340 SINGLE_VALUE_TYPE(keyboard::switches::kEnableExperimentalInputViewFeatures) |
1341 }, | 1341 }, |
| 1342 { |
| 1343 "auto-virtual-keyboard", |
| 1344 IDS_FLAGS_AUTO_VIRTUAL_KEYBOARD_NAME, |
| 1345 IDS_FLAGS_AUTO_VIRTUAL_KEYBOARD_DESCRIPTION, |
| 1346 kOsCrOS, |
| 1347 SINGLE_VALUE_TYPE(keyboard::switches::kAutoVirtualKeyboard) |
| 1348 }, |
1342 #endif | 1349 #endif |
1343 { | 1350 { |
1344 "enable-simple-cache-backend", | 1351 "enable-simple-cache-backend", |
1345 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_NAME, | 1352 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_NAME, |
1346 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_DESCRIPTION, | 1353 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_DESCRIPTION, |
1347 kOsWin | kOsMac | kOsLinux | kOsCrOS, | 1354 kOsWin | kOsMac | kOsLinux | kOsCrOS, |
1348 MULTI_VALUE_TYPE(kSimpleCacheBackendChoices) | 1355 MULTI_VALUE_TYPE(kSimpleCacheBackendChoices) |
1349 }, | 1356 }, |
1350 { | 1357 { |
1351 "enable-tcp-fast-open", | 1358 "enable-tcp-fast-open", |
(...skipping 1241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2593 } | 2600 } |
2594 | 2601 |
2595 const Experiment* GetExperiments(size_t* count) { | 2602 const Experiment* GetExperiments(size_t* count) { |
2596 *count = num_experiments; | 2603 *count = num_experiments; |
2597 return experiments; | 2604 return experiments; |
2598 } | 2605 } |
2599 | 2606 |
2600 } // namespace testing | 2607 } // namespace testing |
2601 | 2608 |
2602 } // namespace about_flags | 2609 } // namespace about_flags |
OLD | NEW |