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

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

Issue 1703403002: remove kDisableMinimizeOnSecondLauncherItemClick (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 | « no previous file | chrome/browser/ui/ash/launcher/chrome_launcher_controller.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 789 matching lines...) Expand 10 before | Expand all | Expand 10 after
800 IDS_FLAGS_EASY_UNLOCK_PROXIMITY_DETECTION_NAME, 800 IDS_FLAGS_EASY_UNLOCK_PROXIMITY_DETECTION_NAME,
801 IDS_FLAGS_EASY_UNLOCK_PROXIMITY_DETECTION_DESCRIPTION, kOsCrOS, 801 IDS_FLAGS_EASY_UNLOCK_PROXIMITY_DETECTION_DESCRIPTION, kOsCrOS,
802 SINGLE_VALUE_TYPE(proximity_auth::switches::kEnableProximityDetection)}, 802 SINGLE_VALUE_TYPE(proximity_auth::switches::kEnableProximityDetection)},
803 {"enable-easy-unlock-bluetooth-low-energy-detection", 803 {"enable-easy-unlock-bluetooth-low-energy-detection",
804 IDS_FLAGS_EASY_UNLOCK_BLUETOOTH_LOW_ENERGY_DISCOVERY_NAME, 804 IDS_FLAGS_EASY_UNLOCK_BLUETOOTH_LOW_ENERGY_DISCOVERY_NAME,
805 IDS_FLAGS_EASY_UNLOCK_BLUETOOTH_LOW_ENERGY_DISCOVERY_DESCRIPTION, kOsCrOS, 805 IDS_FLAGS_EASY_UNLOCK_BLUETOOTH_LOW_ENERGY_DISCOVERY_DESCRIPTION, kOsCrOS,
806 SINGLE_VALUE_TYPE( 806 SINGLE_VALUE_TYPE(
807 proximity_auth::switches::kEnableBluetoothLowEnergyDiscovery)}, 807 proximity_auth::switches::kEnableBluetoothLowEnergyDiscovery)},
808 #endif 808 #endif
809 #if defined(USE_ASH) 809 #if defined(USE_ASH)
810 {"disable-minimize-on-second-launcher-item-click",
811 IDS_FLAGS_MINIMIZE_ON_SECOND_LAUNCHER_ITEM_CLICK_NAME,
812 IDS_FLAGS_MINIMIZE_ON_SECOND_LAUNCHER_ITEM_CLICK_DESCRIPTION, kOsAll,
813 SINGLE_DISABLE_VALUE_TYPE(
814 switches::kDisableMinimizeOnSecondLauncherItemClick)},
815 {"show-touch-hud", IDS_FLAGS_SHOW_TOUCH_HUD_NAME, 810 {"show-touch-hud", IDS_FLAGS_SHOW_TOUCH_HUD_NAME,
816 IDS_FLAGS_SHOW_TOUCH_HUD_DESCRIPTION, kOsAll, 811 IDS_FLAGS_SHOW_TOUCH_HUD_DESCRIPTION, kOsAll,
817 SINGLE_VALUE_TYPE(ash::switches::kAshTouchHud)}, 812 SINGLE_VALUE_TYPE(ash::switches::kAshTouchHud)},
818 { 813 {
819 "enable-pinch", IDS_FLAGS_PINCH_SCALE_NAME, 814 "enable-pinch", IDS_FLAGS_PINCH_SCALE_NAME,
820 IDS_FLAGS_PINCH_SCALE_DESCRIPTION, kOsLinux | kOsWin | kOsCrOS, 815 IDS_FLAGS_PINCH_SCALE_DESCRIPTION, kOsLinux | kOsWin | kOsCrOS,
821 ENABLE_DISABLE_VALUE_TYPE(switches::kEnablePinch, 816 ENABLE_DISABLE_VALUE_TYPE(switches::kEnablePinch,
822 switches::kDisablePinch), 817 switches::kDisablePinch),
823 }, 818 },
824 #endif // defined(USE_ASH) 819 #endif // defined(USE_ASH)
(...skipping 1206 matching lines...) Expand 10 before | Expand all | Expand 10 after
2031 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 2026 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
2032 2027
2033 const FeatureEntry* GetFeatureEntries(size_t* count) { 2028 const FeatureEntry* GetFeatureEntries(size_t* count) {
2034 *count = arraysize(kFeatureEntries); 2029 *count = arraysize(kFeatureEntries);
2035 return kFeatureEntries; 2030 return kFeatureEntries;
2036 } 2031 }
2037 2032
2038 } // namespace testing 2033 } // namespace testing
2039 2034
2040 } // namespace about_flags 2035 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698