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 1276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1287 #endif | 1287 #endif |
1288 #if defined(OS_CHROMEOS) | 1288 #if defined(OS_CHROMEOS) |
1289 { | 1289 { |
1290 "enable-virtual-keyboard", | 1290 "enable-virtual-keyboard", |
1291 IDS_FLAGS_ENABLE_VIRTUAL_KEYBOARD_NAME, | 1291 IDS_FLAGS_ENABLE_VIRTUAL_KEYBOARD_NAME, |
1292 IDS_FLAGS_ENABLE_VIRTUAL_KEYBOARD_DESCRIPTION, | 1292 IDS_FLAGS_ENABLE_VIRTUAL_KEYBOARD_DESCRIPTION, |
1293 kOsCrOS, | 1293 kOsCrOS, |
1294 SINGLE_VALUE_TYPE(keyboard::switches::kEnableVirtualKeyboard) | 1294 SINGLE_VALUE_TYPE(keyboard::switches::kEnableVirtualKeyboard) |
1295 }, | 1295 }, |
1296 { | 1296 { |
| 1297 "enable-virtual-keyboard-overscroll", |
| 1298 IDS_FLAGS_ENABLE_VIRTUAL_KEYBOARD_OVERSCROLL_NAME, |
| 1299 IDS_FLAGS_ENABLE_VIRTUAL_KEYBOARD_OVERSCROLL_DESCRIPTION, |
| 1300 kOsCrOS, |
| 1301 ENABLE_DISABLE_VALUE_TYPE( |
| 1302 keyboard::switches::kEnableVirtualKeyboardOverscroll, |
| 1303 keyboard::switches::kDisableVirtualKeyboardOverscroll) |
| 1304 }, |
| 1305 { |
1297 "enable-swipe-selection", | 1306 "enable-swipe-selection", |
1298 IDS_FLAGS_ENABLE_SWIPE_SELECTION_NAME, | 1307 IDS_FLAGS_ENABLE_SWIPE_SELECTION_NAME, |
1299 IDS_FLAGS_ENABLE_SWIPE_SELECTION_DESCRIPTION, | 1308 IDS_FLAGS_ENABLE_SWIPE_SELECTION_DESCRIPTION, |
1300 kOsCrOS, | 1309 kOsCrOS, |
1301 SINGLE_VALUE_TYPE(keyboard::switches::kEnableSwipeSelection) | 1310 SINGLE_VALUE_TYPE(keyboard::switches::kEnableSwipeSelection) |
1302 }, | 1311 }, |
1303 { | 1312 { |
1304 "enable-input-view", | 1313 "enable-input-view", |
1305 IDS_FLAGS_ENABLE_INPUT_VIEW_NAME, | 1314 IDS_FLAGS_ENABLE_INPUT_VIEW_NAME, |
1306 IDS_FLAGS_ENABLE_INPUT_VIEW_DESCRIPTION, | 1315 IDS_FLAGS_ENABLE_INPUT_VIEW_DESCRIPTION, |
(...skipping 1006 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2313 } | 2322 } |
2314 | 2323 |
2315 const Experiment* GetExperiments(size_t* count) { | 2324 const Experiment* GetExperiments(size_t* count) { |
2316 *count = num_experiments; | 2325 *count = num_experiments; |
2317 return experiments; | 2326 return experiments; |
2318 } | 2327 } |
2319 | 2328 |
2320 } // namespace testing | 2329 } // namespace testing |
2321 | 2330 |
2322 } // namespace about_flags | 2331 } // namespace about_flags |
OLD | NEW |