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

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

Issue 613343005: Automatic deployment of the virtual keyboard. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix typo. Created 6 years, 1 month 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
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1321 matching lines...) Expand 10 before | Expand all | Expand 10 after
1332 kOsCrOS, 1332 kOsCrOS,
1333 SINGLE_VALUE_TYPE(chromeos::switches::kEnablePhysicalKeyboardAutocorrect) 1333 SINGLE_VALUE_TYPE(chromeos::switches::kEnablePhysicalKeyboardAutocorrect)
1334 }, 1334 },
1335 { 1335 {
1336 "enable-experimental-input-view-features", 1336 "enable-experimental-input-view-features",
1337 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_NAME, 1337 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_NAME,
1338 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_DESCRIPTION, 1338 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_DESCRIPTION,
1339 kOsCrOS, 1339 kOsCrOS,
1340 SINGLE_VALUE_TYPE(keyboard::switches::kEnableExperimentalInputViewFeatures) 1340 SINGLE_VALUE_TYPE(keyboard::switches::kEnableExperimentalInputViewFeatures)
1341 }, 1341 },
1342 {
1343 "auto-virtual-keyboard",
1344 IDS_FLAGS_AUTO_VIRTUAL_KEYBOARD_NAME,
1345 IDS_FLAGS_AUTO_VIRTUAL_KEYBOARD_DESCRIPTION,
1346 kOsCrOS,
1347 SINGLE_VALUE_TYPE(keyboard::switches::kAutoVirtualKeyboard)
1348 },
1342 #endif 1349 #endif
1343 { 1350 {
1344 "enable-simple-cache-backend", 1351 "enable-simple-cache-backend",
1345 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_NAME, 1352 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_NAME,
1346 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_DESCRIPTION, 1353 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_DESCRIPTION,
1347 kOsWin | kOsMac | kOsLinux | kOsCrOS, 1354 kOsWin | kOsMac | kOsLinux | kOsCrOS,
1348 MULTI_VALUE_TYPE(kSimpleCacheBackendChoices) 1355 MULTI_VALUE_TYPE(kSimpleCacheBackendChoices)
1349 }, 1356 },
1350 { 1357 {
1351 "enable-tcp-fast-open", 1358 "enable-tcp-fast-open",
(...skipping 1241 matching lines...) Expand 10 before | Expand all | Expand 10 after
2593 } 2600 }
2594 2601
2595 const Experiment* GetExperiments(size_t* count) { 2602 const Experiment* GetExperiments(size_t* count) {
2596 *count = num_experiments; 2603 *count = num_experiments;
2597 return experiments; 2604 return experiments;
2598 } 2605 }
2599 2606
2600 } // namespace testing 2607 } // namespace testing
2601 2608
2602 } // namespace about_flags 2609 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698