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

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

Issue 800933002: Turns on smart deployment of the virtual keyboard by default, and changes the flag to allow easy di… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 1280 matching lines...) Expand 10 before | Expand all | Expand 10 after
1291 SINGLE_VALUE_TYPE(chromeos::switches::kEnablePhysicalKeyboardAutocorrect) 1291 SINGLE_VALUE_TYPE(chromeos::switches::kEnablePhysicalKeyboardAutocorrect)
1292 }, 1292 },
1293 { 1293 {
1294 "enable-experimental-input-view-features", 1294 "enable-experimental-input-view-features",
1295 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_NAME, 1295 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_NAME,
1296 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_DESCRIPTION, 1296 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_DESCRIPTION,
1297 kOsCrOS, 1297 kOsCrOS,
1298 SINGLE_VALUE_TYPE(keyboard::switches::kEnableExperimentalInputViewFeatures) 1298 SINGLE_VALUE_TYPE(keyboard::switches::kEnableExperimentalInputViewFeatures)
1299 }, 1299 },
1300 { 1300 {
1301 "auto-virtual-keyboard", 1301 "disable-smart-virtual-keyboard",
1302 IDS_FLAGS_AUTO_VIRTUAL_KEYBOARD_NAME, 1302 IDS_FLAGS_DISABLE_SMART_VIRTUAL_KEYBOARD_NAME,
1303 IDS_FLAGS_AUTO_VIRTUAL_KEYBOARD_DESCRIPTION, 1303 IDS_FLAGS_DISABLE_SMART_VIRTUAL_KEYBOARD_DESCRIPTION,
1304 kOsCrOS, 1304 kOsCrOS,
1305 SINGLE_VALUE_TYPE(keyboard::switches::kAutoVirtualKeyboard) 1305 SINGLE_VALUE_TYPE(keyboard::switches::kDisableSmartVirtualKeyboard)
1306 }, 1306 },
1307 #endif 1307 #endif
1308 { 1308 {
1309 "enable-simple-cache-backend", 1309 "enable-simple-cache-backend",
1310 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_NAME, 1310 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_NAME,
1311 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_DESCRIPTION, 1311 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_DESCRIPTION,
1312 kOsWin | kOsMac | kOsLinux | kOsCrOS, 1312 kOsWin | kOsMac | kOsLinux | kOsCrOS,
1313 MULTI_VALUE_TYPE(kSimpleCacheBackendChoices) 1313 MULTI_VALUE_TYPE(kSimpleCacheBackendChoices)
1314 }, 1314 },
1315 { 1315 {
(...skipping 1297 matching lines...) Expand 10 before | Expand all | Expand 10 after
2613 } 2613 }
2614 2614
2615 const Experiment* GetExperiments(size_t* count) { 2615 const Experiment* GetExperiments(size_t* count) {
2616 *count = num_experiments; 2616 *count = num_experiments;
2617 return experiments; 2617 return experiments;
2618 } 2618 }
2619 2619
2620 } // namespace testing 2620 } // namespace testing
2621 2621
2622 } // namespace about_flags 2622 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698