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

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

Issue 1274083002: Add flag to show toolkit-views dialogs on Mac, start with HTTP-Auth. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Meatier comments Created 5 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
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 9
10 namespace switches { 10 namespace switches {
(...skipping 1252 matching lines...) Expand 10 before | Expand all | Expand 10 after
1263 // chrome://apps and chrome://extensions and is already enabled on non-mac. 1263 // chrome://apps and chrome://extensions and is already enabled on non-mac.
1264 const char kEnableAppInfoDialogMac[] = "enable-app-info-dialog-mac"; 1264 const char kEnableAppInfoDialogMac[] = "enable-app-info-dialog-mac";
1265 1265
1266 // Enables custom Cmd+` window cycling for platform apps and hosted apps. 1266 // Enables custom Cmd+` window cycling for platform apps and hosted apps.
1267 const char kEnableAppWindowCycling[] = "enable-app-window-cycling"; 1267 const char kEnableAppWindowCycling[] = "enable-app-window-cycling";
1268 1268
1269 // Enables use of toolkit-views based native app windows. 1269 // Enables use of toolkit-views based native app windows.
1270 const char kEnableMacViewsNativeAppWindows[] = 1270 const char kEnableMacViewsNativeAppWindows[] =
1271 "enable-mac-views-native-app-windows"; 1271 "enable-mac-views-native-app-windows";
1272 1272
1273 // Causes Chrome to use an equivalent toolkit-views version of a browser dialog
1274 // when available, rather than a Cocoa one.
1275 const char kEnableToolkitViewsDialogsMac[] = "enable-toolkit-views-dialogs-mac";
1276
1273 // Enables Translate experimental new UX which replaces the infobar. 1277 // Enables Translate experimental new UX which replaces the infobar.
1274 const char kEnableTranslateNewUX[] = "enable-translate-new-ux"; 1278 const char kEnableTranslateNewUX[] = "enable-translate-new-ux";
1275 1279
1276 // This is how the metrics client ID is passed from the browser process to its 1280 // This is how the metrics client ID is passed from the browser process to its
1277 // children. With Crashpad, the metrics client ID is distinct from the crash 1281 // children. With Crashpad, the metrics client ID is distinct from the crash
1278 // client ID. 1282 // client ID.
1279 const char kMetricsClientID[] = "metrics-client-id"; 1283 const char kMetricsClientID[] = "metrics-client-id";
1280 1284
1281 // A process type (switches::kProcessType) that relaunches the browser. See 1285 // A process type (switches::kProcessType) that relaunches the browser. See
1282 // chrome/browser/mac/relauncher.h. 1286 // chrome/browser/mac/relauncher.h.
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
1412 1416
1413 // ----------------------------------------------------------------------------- 1417 // -----------------------------------------------------------------------------
1414 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1418 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1415 // 1419 //
1416 // You were going to just dump your switches here, weren't you? Instead, please 1420 // You were going to just dump your switches here, weren't you? Instead, please
1417 // put them in alphabetical order above, or in order inside the appropriate 1421 // put them in alphabetical order above, or in order inside the appropriate
1418 // ifdef at the bottom. The order should match the header. 1422 // ifdef at the bottom. The order should match the header.
1419 // ----------------------------------------------------------------------------- 1423 // -----------------------------------------------------------------------------
1420 1424
1421 } // namespace switches 1425 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698