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

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

Issue 2086273003: [Mac] Reveal Fullscreen Toolbar for Tab Strip Changes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed test Created 4 years, 6 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
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 1160 matching lines...) Expand 10 before | Expand all | Expand 10 after
1171 // Enables tab detaching in fullscreen mode on Mac. 1171 // Enables tab detaching in fullscreen mode on Mac.
1172 const char kEnableFullscreenTabDetaching[] = "enable-fullscreen-tab-detaching"; 1172 const char kEnableFullscreenTabDetaching[] = "enable-fullscreen-tab-detaching";
1173 1173
1174 // Allows hosted apps to be opened in windows on Mac. 1174 // Allows hosted apps to be opened in windows on Mac.
1175 const char kEnableHostedAppsInWindows[] = "enable-hosted-apps-in-windows"; 1175 const char kEnableHostedAppsInWindows[] = "enable-hosted-apps-in-windows";
1176 1176
1177 // Enables use of toolkit-views based native app windows. 1177 // Enables use of toolkit-views based native app windows.
1178 const char kEnableMacViewsNativeAppWindows[] = 1178 const char kEnableMacViewsNativeAppWindows[] =
1179 "enable-mac-views-native-app-windows"; 1179 "enable-mac-views-native-app-windows";
1180 1180
1181 // Enables the fullscreen toolbar to reveal itself for tab strip changes.
1182 const char kEnableFullscreenToolbarReveal[] =
1183 "enable-fullscreen-toolbar-reveal";
1184
1181 // Enables Translate experimental new UX which replaces the infobar. 1185 // Enables Translate experimental new UX which replaces the infobar.
1182 const char kEnableTranslateNewUX[] = "enable-translate-new-ux"; 1186 const char kEnableTranslateNewUX[] = "enable-translate-new-ux";
1183 1187
1184 // This is how the metrics client ID is passed from the browser process to its 1188 // This is how the metrics client ID is passed from the browser process to its
1185 // children. With Crashpad, the metrics client ID is distinct from the crash 1189 // children. With Crashpad, the metrics client ID is distinct from the crash
1186 // client ID. 1190 // client ID.
1187 const char kMetricsClientID[] = "metrics-client-id"; 1191 const char kMetricsClientID[] = "metrics-client-id";
1188 1192
1189 // A process type (switches::kProcessType) that relaunches the browser. See 1193 // A process type (switches::kProcessType) that relaunches the browser. See
1190 // chrome/browser/mac/relauncher.h. 1194 // chrome/browser/mac/relauncher.h.
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
1331 1335
1332 // ----------------------------------------------------------------------------- 1336 // -----------------------------------------------------------------------------
1333 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1337 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1334 // 1338 //
1335 // You were going to just dump your switches here, weren't you? Instead, please 1339 // You were going to just dump your switches here, weren't you? Instead, please
1336 // put them in alphabetical order above, or in order inside the appropriate 1340 // put them in alphabetical order above, or in order inside the appropriate
1337 // ifdef at the bottom. The order should match the header. 1341 // ifdef at the bottom. The order should match the header.
1338 // ----------------------------------------------------------------------------- 1342 // -----------------------------------------------------------------------------
1339 1343
1340 } // namespace switches 1344 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698