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

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

Issue 820073009: Re-enables smart deploy by default. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. 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
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | ui/keyboard/keyboard_switches.h » ('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 1263 matching lines...) Expand 10 before | Expand all | Expand 10 after
1274 SINGLE_VALUE_TYPE(chromeos::switches::kEnablePhysicalKeyboardAutocorrect) 1274 SINGLE_VALUE_TYPE(chromeos::switches::kEnablePhysicalKeyboardAutocorrect)
1275 }, 1275 },
1276 { 1276 {
1277 "enable-experimental-input-view-features", 1277 "enable-experimental-input-view-features",
1278 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_NAME, 1278 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_NAME,
1279 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_DESCRIPTION, 1279 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_DESCRIPTION,
1280 kOsCrOS, 1280 kOsCrOS,
1281 SINGLE_VALUE_TYPE(keyboard::switches::kEnableExperimentalInputViewFeatures) 1281 SINGLE_VALUE_TYPE(keyboard::switches::kEnableExperimentalInputViewFeatures)
1282 }, 1282 },
1283 { 1283 {
1284 "auto-virtual-keyboard", 1284 "disable-smart-virtual-keyboard",
1285 IDS_FLAGS_ENABLE_AUTO_VIRTUAL_KEYBOARD_NAME, 1285 IDS_FLAGS_DISABLE_SMART_VIRTUAL_KEYBOARD_NAME,
1286 IDS_FLAGS_ENABLE_AUTO_VIRTUAL_KEYBOARD_DESCRIPTION, 1286 IDS_FLAGS_DISABLE_SMART_VIRTUAL_KEYBOARD_DESCRIPTION,
1287 kOsCrOS, 1287 kOsCrOS,
1288 SINGLE_VALUE_TYPE(keyboard::switches::kEnableAutoVirtualKeyboard) 1288 SINGLE_VALUE_TYPE(keyboard::switches::kDisableSmartVirtualKeyboard)
1289 }, 1289 },
1290 #endif 1290 #endif
1291 { 1291 {
1292 "enable-simple-cache-backend", 1292 "enable-simple-cache-backend",
1293 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_NAME, 1293 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_NAME,
1294 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_DESCRIPTION, 1294 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_DESCRIPTION,
1295 kOsWin | kOsMac | kOsLinux | kOsCrOS, 1295 kOsWin | kOsMac | kOsLinux | kOsCrOS,
1296 MULTI_VALUE_TYPE(kSimpleCacheBackendChoices) 1296 MULTI_VALUE_TYPE(kSimpleCacheBackendChoices)
1297 }, 1297 },
1298 { 1298 {
(...skipping 1392 matching lines...) Expand 10 before | Expand all | Expand 10 after
2691 } 2691 }
2692 2692
2693 const Experiment* GetExperiments(size_t* count) { 2693 const Experiment* GetExperiments(size_t* count) {
2694 *count = num_experiments; 2694 *count = num_experiments;
2695 return experiments; 2695 return experiments;
2696 } 2696 }
2697 2697
2698 } // namespace testing 2698 } // namespace testing
2699 2699
2700 } // namespace about_flags 2700 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | ui/keyboard/keyboard_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698