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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 1881093002: Implement Tab Detaching in Fullscreen Mode on Mac OSX (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add to the histogram Created 4 years, 8 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/common/chrome_switches.h ('k') | tools/metrics/histograms/histograms.xml » ('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/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 10
(...skipping 1151 matching lines...) Expand 10 before | Expand all | Expand 10 after
1162 // Disables Translate experimental new UX which replaces the infobar. 1162 // Disables Translate experimental new UX which replaces the infobar.
1163 const char kDisableTranslateNewUX[] = "disable-translate-new-ux"; 1163 const char kDisableTranslateNewUX[] = "disable-translate-new-ux";
1164 1164
1165 // Enable the toolkit-views App Info dialog for Mac. This is accessible from 1165 // Enable the toolkit-views App Info dialog for Mac. This is accessible from
1166 // chrome://apps and chrome://extensions and is already enabled on non-mac. 1166 // chrome://apps and chrome://extensions and is already enabled on non-mac.
1167 const char kEnableAppInfoDialogMac[] = "enable-app-info-dialog-mac"; 1167 const char kEnableAppInfoDialogMac[] = "enable-app-info-dialog-mac";
1168 1168
1169 // Enables custom Cmd+` window cycling for platform apps and hosted apps. 1169 // Enables custom Cmd+` window cycling for platform apps and hosted apps.
1170 const char kEnableAppWindowCycling[] = "enable-app-window-cycling"; 1170 const char kEnableAppWindowCycling[] = "enable-app-window-cycling";
1171 1171
1172 // Enables tab detaching in fullscreen mode on Mac.
1173 const char kEnableFullscreenTabDetaching[] = "enable-fullscreen-tab-detaching";
1174
1172 // Allows hosted apps to be opened in windows on Mac. 1175 // Allows hosted apps to be opened in windows on Mac.
1173 const char kEnableHostedAppsInWindows[] = "enable-hosted-apps-in-windows"; 1176 const char kEnableHostedAppsInWindows[] = "enable-hosted-apps-in-windows";
1174 1177
1175 // Enables use of toolkit-views based native app windows. 1178 // Enables use of toolkit-views based native app windows.
1176 const char kEnableMacViewsNativeAppWindows[] = 1179 const char kEnableMacViewsNativeAppWindows[] =
1177 "enable-mac-views-native-app-windows"; 1180 "enable-mac-views-native-app-windows";
1178 1181
1179 // Causes Chrome to use an equivalent toolkit-views version of a browser dialog 1182 // Causes Chrome to use an equivalent toolkit-views version of a browser dialog
1180 // when available, rather than a Cocoa one. 1183 // when available, rather than a Cocoa one.
1181 const char kEnableMacViewsDialogs[] = "enable-mac-views-dialogs"; 1184 const char kEnableMacViewsDialogs[] = "enable-mac-views-dialogs";
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
1359 1362
1360 // ----------------------------------------------------------------------------- 1363 // -----------------------------------------------------------------------------
1361 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1364 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1362 // 1365 //
1363 // You were going to just dump your switches here, weren't you? Instead, please 1366 // You were going to just dump your switches here, weren't you? Instead, please
1364 // put them in alphabetical order above, or in order inside the appropriate 1367 // put them in alphabetical order above, or in order inside the appropriate
1365 // ifdef at the bottom. The order should match the header. 1368 // ifdef at the bottom. The order should match the header.
1366 // ----------------------------------------------------------------------------- 1369 // -----------------------------------------------------------------------------
1367 1370
1368 } // namespace switches 1371 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698