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

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

Issue 2004043003: Expose the MacViewsWebUIDialogs feature flag to chrome://flags (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@20160520-Enums-MakeThemInt-HeaderChanges-ROLLUP
Patch Set: remove unused #includes Created 4 years, 7 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') | no next file » | 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 1150 matching lines...) Expand 10 before | Expand all | Expand 10 after
1161 // Enables tab detaching in fullscreen mode on Mac. 1161 // Enables tab detaching in fullscreen mode on Mac.
1162 const char kEnableFullscreenTabDetaching[] = "enable-fullscreen-tab-detaching"; 1162 const char kEnableFullscreenTabDetaching[] = "enable-fullscreen-tab-detaching";
1163 1163
1164 // Allows hosted apps to be opened in windows on Mac. 1164 // Allows hosted apps to be opened in windows on Mac.
1165 const char kEnableHostedAppsInWindows[] = "enable-hosted-apps-in-windows"; 1165 const char kEnableHostedAppsInWindows[] = "enable-hosted-apps-in-windows";
1166 1166
1167 // Enables use of toolkit-views based native app windows. 1167 // Enables use of toolkit-views based native app windows.
1168 const char kEnableMacViewsNativeAppWindows[] = 1168 const char kEnableMacViewsNativeAppWindows[] =
1169 "enable-mac-views-native-app-windows"; 1169 "enable-mac-views-native-app-windows";
1170 1170
1171 // Causes Chrome to use an equivalent toolkit-views version of a browser dialog
1172 // when available, rather than a Cocoa one.
1173 const char kEnableMacViewsDialogs[] = "enable-mac-views-dialogs";
1174
1175 // Enables Translate experimental new UX which replaces the infobar. 1171 // Enables Translate experimental new UX which replaces the infobar.
1176 const char kEnableTranslateNewUX[] = "enable-translate-new-ux"; 1172 const char kEnableTranslateNewUX[] = "enable-translate-new-ux";
1177 1173
1178 // This is how the metrics client ID is passed from the browser process to its 1174 // This is how the metrics client ID is passed from the browser process to its
1179 // children. With Crashpad, the metrics client ID is distinct from the crash 1175 // children. With Crashpad, the metrics client ID is distinct from the crash
1180 // client ID. 1176 // client ID.
1181 const char kMetricsClientID[] = "metrics-client-id"; 1177 const char kMetricsClientID[] = "metrics-client-id";
1182 1178
1183 // A process type (switches::kProcessType) that relaunches the browser. See 1179 // A process type (switches::kProcessType) that relaunches the browser. See
1184 // chrome/browser/mac/relauncher.h. 1180 // chrome/browser/mac/relauncher.h.
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
1330 1326
1331 // ----------------------------------------------------------------------------- 1327 // -----------------------------------------------------------------------------
1332 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1328 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1333 // 1329 //
1334 // You were going to just dump your switches here, weren't you? Instead, please 1330 // You were going to just dump your switches here, weren't you? Instead, please
1335 // put them in alphabetical order above, or in order inside the appropriate 1331 // put them in alphabetical order above, or in order inside the appropriate
1336 // ifdef at the bottom. The order should match the header. 1332 // ifdef at the bottom. The order should match the header.
1337 // ----------------------------------------------------------------------------- 1333 // -----------------------------------------------------------------------------
1338 1334
1339 } // namespace switches 1335 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698