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 1251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1262 #endif | 1262 #endif |
1263 #if defined(OS_CHROMEOS) | 1263 #if defined(OS_CHROMEOS) |
1264 { | 1264 { |
1265 "enable-virtual-keyboard", | 1265 "enable-virtual-keyboard", |
1266 IDS_FLAGS_ENABLE_VIRTUAL_KEYBOARD_NAME, | 1266 IDS_FLAGS_ENABLE_VIRTUAL_KEYBOARD_NAME, |
1267 IDS_FLAGS_ENABLE_VIRTUAL_KEYBOARD_DESCRIPTION, | 1267 IDS_FLAGS_ENABLE_VIRTUAL_KEYBOARD_DESCRIPTION, |
1268 kOsCrOS, | 1268 kOsCrOS, |
1269 SINGLE_VALUE_TYPE(keyboard::switches::kEnableVirtualKeyboard) | 1269 SINGLE_VALUE_TYPE(keyboard::switches::kEnableVirtualKeyboard) |
1270 }, | 1270 }, |
1271 { | 1271 { |
| 1272 "enable-virtual-keyboard-overscroll", |
| 1273 IDS_FLAGS_ENABLE_VIRTUAL_KEYBOARD_OVERSCROLL_NAME, |
| 1274 IDS_FLAGS_ENABLE_VIRTUAL_KEYBOARD_OVERSCROLL_DESCRIPTION, |
| 1275 kOsCrOS, |
| 1276 ENABLE_DISABLE_VALUE_TYPE( |
| 1277 keyboard::switches::kEnableVirtualKeyboardOverscroll, |
| 1278 keyboard::switches::kDisableVirtualKeyboardOverscroll) |
| 1279 }, |
| 1280 { |
1272 "enable-swipe-selection", | 1281 "enable-swipe-selection", |
1273 IDS_FLAGS_ENABLE_SWIPE_SELECTION_NAME, | 1282 IDS_FLAGS_ENABLE_SWIPE_SELECTION_NAME, |
1274 IDS_FLAGS_ENABLE_SWIPE_SELECTION_DESCRIPTION, | 1283 IDS_FLAGS_ENABLE_SWIPE_SELECTION_DESCRIPTION, |
1275 kOsCrOS, | 1284 kOsCrOS, |
1276 SINGLE_VALUE_TYPE(keyboard::switches::kEnableSwipeSelection) | 1285 SINGLE_VALUE_TYPE(keyboard::switches::kEnableSwipeSelection) |
1277 }, | 1286 }, |
1278 { | 1287 { |
1279 "enable-input-view", | 1288 "enable-input-view", |
1280 IDS_FLAGS_ENABLE_INPUT_VIEW_NAME, | 1289 IDS_FLAGS_ENABLE_INPUT_VIEW_NAME, |
1281 IDS_FLAGS_ENABLE_INPUT_VIEW_DESCRIPTION, | 1290 IDS_FLAGS_ENABLE_INPUT_VIEW_DESCRIPTION, |
(...skipping 1015 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2297 } | 2306 } |
2298 | 2307 |
2299 const Experiment* GetExperiments(size_t* count) { | 2308 const Experiment* GetExperiments(size_t* count) { |
2300 *count = num_experiments; | 2309 *count = num_experiments; |
2301 return experiments; | 2310 return experiments; |
2302 } | 2311 } |
2303 | 2312 |
2304 } // namespace testing | 2313 } // namespace testing |
2305 | 2314 |
2306 } // namespace about_flags | 2315 } // namespace about_flags |
OLD | NEW |