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

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

Issue 20415002: Add window overview mode behind --ash-enable-overview-mode flag to F5 key. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Remove implicit cast to bool. Created 7 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') | chrome/browser/ui/ash/chrome_shell_delegate.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 <algorithm> 7 #include <algorithm>
8 #include <iterator> 8 #include <iterator>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 1024 matching lines...) Expand 10 before | Expand all | Expand 10 after
1035 SINGLE_VALUE_TYPE(switches::kShowLauncherAlignmentMenu) 1035 SINGLE_VALUE_TYPE(switches::kShowLauncherAlignmentMenu)
1036 }, 1036 },
1037 { 1037 {
1038 "disable-minimize-on-second-launcher-item-click", 1038 "disable-minimize-on-second-launcher-item-click",
1039 IDS_FLAGS_DISABLE_MINIMIZE_ON_SECOND_LAUNCHER_ITEM_CLICK_NAME, 1039 IDS_FLAGS_DISABLE_MINIMIZE_ON_SECOND_LAUNCHER_ITEM_CLICK_NAME,
1040 IDS_FLAGS_DISABLE_MINIMIZE_ON_SECOND_LAUNCHER_ITEM_CLICK_DESCRIPTION, 1040 IDS_FLAGS_DISABLE_MINIMIZE_ON_SECOND_LAUNCHER_ITEM_CLICK_DESCRIPTION,
1041 kOsAll, 1041 kOsAll,
1042 SINGLE_VALUE_TYPE(switches::kDisableMinimizeOnSecondLauncherItemClick) 1042 SINGLE_VALUE_TYPE(switches::kDisableMinimizeOnSecondLauncherItemClick)
1043 }, 1043 },
1044 { 1044 {
1045 "enable-overview-mode",
1046 IDS_FLAGS_OVERVIEW_MODE_NAME,
1047 IDS_FLAGS_OVERVIEW_MODE_DESCRIPTION,
1048 kOsCrOS,
1049 SINGLE_VALUE_TYPE(ash::switches::kAshEnableOverviewMode)
1050 },
1051 {
1045 "show-touch-hud", 1052 "show-touch-hud",
1046 IDS_FLAGS_SHOW_TOUCH_HUD_NAME, 1053 IDS_FLAGS_SHOW_TOUCH_HUD_NAME,
1047 IDS_FLAGS_SHOW_TOUCH_HUD_DESCRIPTION, 1054 IDS_FLAGS_SHOW_TOUCH_HUD_DESCRIPTION,
1048 kOsAll, 1055 kOsAll,
1049 SINGLE_VALUE_TYPE(ash::switches::kAshTouchHud) 1056 SINGLE_VALUE_TYPE(ash::switches::kAshTouchHud)
1050 }, 1057 },
1051 { 1058 {
1052 "enable-pinch", 1059 "enable-pinch",
1053 IDS_FLAGS_ENABLE_PINCH_SCALE_NAME, 1060 IDS_FLAGS_ENABLE_PINCH_SCALE_NAME,
1054 IDS_FLAGS_ENABLE_PINCH_SCALE_DESCRIPTION, 1061 IDS_FLAGS_ENABLE_PINCH_SCALE_DESCRIPTION,
(...skipping 1072 matching lines...) Expand 10 before | Expand all | Expand 10 after
2127 } 2134 }
2128 2135
2129 const Experiment* GetExperiments(size_t* count) { 2136 const Experiment* GetExperiments(size_t* count) {
2130 *count = num_experiments; 2137 *count = num_experiments;
2131 return experiments; 2138 return experiments;
2132 } 2139 }
2133 2140
2134 } // namespace testing 2141 } // namespace testing
2135 2142
2136 } // namespace about_flags 2143 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/ui/ash/chrome_shell_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698