Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Side by Side Diff: chrome/browser/about_flags.cc

Issue 848843003: Add a --enable-gesture-typing flag. Currently this flag does nothing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add histogram enume ntry Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1270 matching lines...) Expand 10 before | Expand all | Expand 10 after
1281 SINGLE_VALUE_TYPE(chromeos::switches::kDisableVoiceInput) 1281 SINGLE_VALUE_TYPE(chromeos::switches::kDisableVoiceInput)
1282 }, 1282 },
1283 { 1283 {
1284 "enable-experimental-input-view-features", 1284 "enable-experimental-input-view-features",
1285 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_NAME, 1285 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_NAME,
1286 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_DESCRIPTION, 1286 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_DESCRIPTION,
1287 kOsCrOS, 1287 kOsCrOS,
1288 SINGLE_VALUE_TYPE(keyboard::switches::kEnableExperimentalInputViewFeatures) 1288 SINGLE_VALUE_TYPE(keyboard::switches::kEnableExperimentalInputViewFeatures)
1289 }, 1289 },
1290 { 1290 {
1291 "enable-gesture-typing",
1292 IDS_FLAGS_ENABLE_GESTURE_TYPING_NAME,
1293 IDS_FLAGS_ENABLE_GESTURE_TYPING_DESCRIPTION,
1294 kOsCrOS,
1295 SINGLE_VALUE_TYPE(keyboard::switches::kEnableGestureTyping)
1296 },
1297 {
1291 "disable-smart-virtual-keyboard", 1298 "disable-smart-virtual-keyboard",
1292 IDS_FLAGS_DISABLE_SMART_VIRTUAL_KEYBOARD_NAME, 1299 IDS_FLAGS_DISABLE_SMART_VIRTUAL_KEYBOARD_NAME,
1293 IDS_FLAGS_DISABLE_SMART_VIRTUAL_KEYBOARD_DESCRIPTION, 1300 IDS_FLAGS_DISABLE_SMART_VIRTUAL_KEYBOARD_DESCRIPTION,
1294 kOsCrOS, 1301 kOsCrOS,
1295 SINGLE_VALUE_TYPE(keyboard::switches::kDisableSmartVirtualKeyboard) 1302 SINGLE_VALUE_TYPE(keyboard::switches::kDisableSmartVirtualKeyboard)
1296 }, 1303 },
1297 #endif 1304 #endif
1298 { 1305 {
1299 "enable-simple-cache-backend", 1306 "enable-simple-cache-backend",
1300 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_NAME, 1307 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_NAME,
(...skipping 1397 matching lines...) Expand 10 before | Expand all | Expand 10 after
2698 } 2705 }
2699 2706
2700 const Experiment* GetExperiments(size_t* count) { 2707 const Experiment* GetExperiments(size_t* count) {
2701 *count = num_experiments; 2708 *count = num_experiments;
2702 return experiments; 2709 return experiments;
2703 } 2710 }
2704 2711
2705 } // namespace testing 2712 } // namespace testing
2706 2713
2707 } // namespace about_flags 2714 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698