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

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: 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
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 1310 matching lines...) Expand 10 before | Expand all | Expand 10 after
1321 SINGLE_VALUE_TYPE(keyboard::switches::kEnableExperimentalInputViewFeatures) 1321 SINGLE_VALUE_TYPE(keyboard::switches::kEnableExperimentalInputViewFeatures)
1322 }, 1322 },
1323 #if defined(ENABLE_EXTENSIONS) 1323 #if defined(ENABLE_EXTENSIONS)
1324 { 1324 {
1325 "enable-extension-info-dialog", 1325 "enable-extension-info-dialog",
1326 IDS_FLAGS_ENABLE_EXTENSION_INFO_DIALOG_NAME, 1326 IDS_FLAGS_ENABLE_EXTENSION_INFO_DIALOG_NAME,
1327 IDS_FLAGS_ENABLE_EXTENSION_INFO_DIALOG_DESCRIPTION, 1327 IDS_FLAGS_ENABLE_EXTENSION_INFO_DIALOG_DESCRIPTION,
1328 kOsWin | kOsLinux | kOsCrOS, 1328 kOsWin | kOsLinux | kOsCrOS,
1329 SINGLE_VALUE_TYPE(extensions::switches::kEnableExtensionInfoDialog) 1329 SINGLE_VALUE_TYPE(extensions::switches::kEnableExtensionInfoDialog)
1330 }, 1330 },
1331 {
1332 "auto-virtual-keyboard",
1333 IDS_FLAGS_AUTO_VIRTUAL_KEYBOARD_NAME,
1334 IDS_FLAGS_AUTO_VIRTUAL_KEYBOARD_DESCRIPTION,
1335 kOsCrOS,
1336 SINGLE_VALUE_TYPE(keyboard::switches::kAutoVirtualKeyboard)
1337 },
1331 #endif 1338 #endif
1332 #endif 1339 #endif
1333 { 1340 {
1334 "enable-simple-cache-backend", 1341 "enable-simple-cache-backend",
1335 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_NAME, 1342 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_NAME,
1336 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_DESCRIPTION, 1343 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_DESCRIPTION,
1337 kOsWin | kOsMac | kOsLinux | kOsCrOS, 1344 kOsWin | kOsMac | kOsLinux | kOsCrOS,
1338 MULTI_VALUE_TYPE(kSimpleCacheBackendChoices) 1345 MULTI_VALUE_TYPE(kSimpleCacheBackendChoices)
1339 }, 1346 },
1340 { 1347 {
(...skipping 1223 matching lines...) Expand 10 before | Expand all | Expand 10 after
2564 } 2571 }
2565 2572
2566 const Experiment* GetExperiments(size_t* count) { 2573 const Experiment* GetExperiments(size_t* count) {
2567 *count = num_experiments; 2574 *count = num_experiments;
2568 return experiments; 2575 return experiments;
2569 } 2576 }
2570 2577
2571 } // namespace testing 2578 } // namespace testing
2572 2579
2573 } // namespace about_flags 2580 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698