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 1312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1323 #endif | 1323 #endif |
1324 #if defined(OS_CHROMEOS) | 1324 #if defined(OS_CHROMEOS) |
1325 { | 1325 { |
1326 "enable-virtual-keyboard", | 1326 "enable-virtual-keyboard", |
1327 IDS_FLAGS_ENABLE_VIRTUAL_KEYBOARD_NAME, | 1327 IDS_FLAGS_ENABLE_VIRTUAL_KEYBOARD_NAME, |
1328 IDS_FLAGS_ENABLE_VIRTUAL_KEYBOARD_DESCRIPTION, | 1328 IDS_FLAGS_ENABLE_VIRTUAL_KEYBOARD_DESCRIPTION, |
1329 kOsCrOS, | 1329 kOsCrOS, |
1330 SINGLE_VALUE_TYPE(keyboard::switches::kEnableVirtualKeyboard) | 1330 SINGLE_VALUE_TYPE(keyboard::switches::kEnableVirtualKeyboard) |
1331 }, | 1331 }, |
1332 { | 1332 { |
| 1333 "enable-virtual-keyboard-overscroll", |
| 1334 IDS_FLAGS_ENABLE_VIRTUAL_KEYBOARD_OVERSCROLL_NAME, |
| 1335 IDS_FLAGS_ENABLE_VIRTUAL_KEYBOARD_OVERSCROLL_DESCRIPTION, |
| 1336 kOsCrOS, |
| 1337 ENABLE_DISABLE_VALUE_TYPE( |
| 1338 keyboard::switches::kEnableVirtualKeyboardOverscroll, |
| 1339 keyboard::switches::kDisableVirtualKeyboardOverscroll) |
| 1340 }, |
| 1341 { |
1333 "enable-swipe-selection", | 1342 "enable-swipe-selection", |
1334 IDS_FLAGS_ENABLE_SWIPE_SELECTION_NAME, | 1343 IDS_FLAGS_ENABLE_SWIPE_SELECTION_NAME, |
1335 IDS_FLAGS_ENABLE_SWIPE_SELECTION_DESCRIPTION, | 1344 IDS_FLAGS_ENABLE_SWIPE_SELECTION_DESCRIPTION, |
1336 kOsCrOS, | 1345 kOsCrOS, |
1337 SINGLE_VALUE_TYPE(keyboard::switches::kEnableSwipeSelection) | 1346 SINGLE_VALUE_TYPE(keyboard::switches::kEnableSwipeSelection) |
1338 }, | 1347 }, |
1339 { | 1348 { |
1340 "enable-input-view", | 1349 "enable-input-view", |
1341 IDS_FLAGS_ENABLE_INPUT_VIEW_NAME, | 1350 IDS_FLAGS_ENABLE_INPUT_VIEW_NAME, |
1342 IDS_FLAGS_ENABLE_INPUT_VIEW_DESCRIPTION, | 1351 IDS_FLAGS_ENABLE_INPUT_VIEW_DESCRIPTION, |
(...skipping 992 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2335 } | 2344 } |
2336 | 2345 |
2337 const Experiment* GetExperiments(size_t* count) { | 2346 const Experiment* GetExperiments(size_t* count) { |
2338 *count = num_experiments; | 2347 *count = num_experiments; |
2339 return experiments; | 2348 return experiments; |
2340 } | 2349 } |
2341 | 2350 |
2342 } // namespace testing | 2351 } // namespace testing |
2343 | 2352 |
2344 } // namespace about_flags | 2353 } // namespace about_flags |
OLD | NEW |