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

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

Issue 2234233002: Enable ash window cycle UI by default. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sky review Created 4 years, 4 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/app_list/presenter/app_list_presenter_impl.cc » ('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 892 matching lines...) Expand 10 before | Expand all | Expand 10 after
903 SINGLE_VALUE_TYPE_AND_VALUE(switches::kAllowNaClSocketAPI, "*")}, 903 SINGLE_VALUE_TYPE_AND_VALUE(switches::kAllowNaClSocketAPI, "*")},
904 #endif 904 #endif
905 #if defined(OS_CHROMEOS) 905 #if defined(OS_CHROMEOS)
906 {"allow-touchpad-three-finger-click", 906 {"allow-touchpad-three-finger-click",
907 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_NAME, 907 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_NAME,
908 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_DESCRIPTION, kOsCrOS, 908 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_DESCRIPTION, kOsCrOS,
909 SINGLE_VALUE_TYPE(chromeos::switches::kEnableTouchpadThreeFingerClick)}, 909 SINGLE_VALUE_TYPE(chromeos::switches::kEnableTouchpadThreeFingerClick)},
910 {"ash-enable-unified-desktop", IDS_FLAGS_ASH_ENABLE_UNIFIED_DESKTOP_NAME, 910 {"ash-enable-unified-desktop", IDS_FLAGS_ASH_ENABLE_UNIFIED_DESKTOP_NAME,
911 IDS_FLAGS_ASH_ENABLE_UNIFIED_DESKTOP_DESCRIPTION, kOsCrOS, 911 IDS_FLAGS_ASH_ENABLE_UNIFIED_DESKTOP_DESCRIPTION, kOsCrOS,
912 SINGLE_VALUE_TYPE(ash::switches::kAshEnableUnifiedDesktop)}, 912 SINGLE_VALUE_TYPE(ash::switches::kAshEnableUnifiedDesktop)},
913 {"ash-enable-window-cycle-ui", IDS_FLAGS_ASH_ENABLE_WINDOW_CYCLE_UI_NAME,
914 IDS_FLAGS_ASH_ENABLE_WINDOW_CYCLE_UI_DESCRIPTION, kOsCrOS,
915 SINGLE_VALUE_TYPE(ash::switches::kAshEnableWindowCycleUi)},
916 {"enable-easy-unlock-proximity-detection", 913 {"enable-easy-unlock-proximity-detection",
917 IDS_FLAGS_EASY_UNLOCK_PROXIMITY_DETECTION_NAME, 914 IDS_FLAGS_EASY_UNLOCK_PROXIMITY_DETECTION_NAME,
918 IDS_FLAGS_EASY_UNLOCK_PROXIMITY_DETECTION_DESCRIPTION, kOsCrOS, 915 IDS_FLAGS_EASY_UNLOCK_PROXIMITY_DETECTION_DESCRIPTION, kOsCrOS,
919 SINGLE_VALUE_TYPE(proximity_auth::switches::kEnableProximityDetection)}, 916 SINGLE_VALUE_TYPE(proximity_auth::switches::kEnableProximityDetection)},
920 {"enable-easy-unlock-bluetooth-low-energy-detection", 917 {"enable-easy-unlock-bluetooth-low-energy-detection",
921 IDS_FLAGS_EASY_UNLOCK_BLUETOOTH_LOW_ENERGY_DISCOVERY_NAME, 918 IDS_FLAGS_EASY_UNLOCK_BLUETOOTH_LOW_ENERGY_DISCOVERY_NAME,
922 IDS_FLAGS_EASY_UNLOCK_BLUETOOTH_LOW_ENERGY_DISCOVERY_DESCRIPTION, kOsCrOS, 919 IDS_FLAGS_EASY_UNLOCK_BLUETOOTH_LOW_ENERGY_DISCOVERY_DESCRIPTION, kOsCrOS,
923 SINGLE_VALUE_TYPE( 920 SINGLE_VALUE_TYPE(
924 proximity_auth::switches::kEnableBluetoothLowEnergyDiscovery)}, 921 proximity_auth::switches::kEnableBluetoothLowEnergyDiscovery)},
925 #endif 922 #endif
(...skipping 1318 matching lines...) Expand 10 before | Expand all | Expand 10 after
2244 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 2241 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
2245 2242
2246 const FeatureEntry* GetFeatureEntries(size_t* count) { 2243 const FeatureEntry* GetFeatureEntries(size_t* count) {
2247 *count = arraysize(kFeatureEntries); 2244 *count = arraysize(kFeatureEntries);
2248 return kFeatureEntries; 2245 return kFeatureEntries;
2249 } 2246 }
2250 2247
2251 } // namespace testing 2248 } // namespace testing
2252 2249
2253 } // namespace about_flags 2250 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | ui/app_list/presenter/app_list_presenter_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698