OLD | NEW |
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 1278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1289 | 1289 |
1290 // Forcibly disables Lion-style on newer OSes, to allow developers to test the | 1290 // Forcibly disables Lion-style on newer OSes, to allow developers to test the |
1291 // older, SnowLeopard-style fullscreen. | 1291 // older, SnowLeopard-style fullscreen. |
1292 const char kDisableSystemFullscreenForTesting[] = | 1292 const char kDisableSystemFullscreenForTesting[] = |
1293 "disable-system-fullscreen-for-testing"; | 1293 "disable-system-fullscreen-for-testing"; |
1294 | 1294 |
1295 // A process type (switches::kProcessType) that relaunches the browser. See | 1295 // A process type (switches::kProcessType) that relaunches the browser. See |
1296 // chrome/browser/mac/relauncher.h. | 1296 // chrome/browser/mac/relauncher.h. |
1297 const char kRelauncherProcess[] = "relauncher"; | 1297 const char kRelauncherProcess[] = "relauncher"; |
1298 | 1298 |
| 1299 // Use Views toolkit on Mac. |
| 1300 const char kUseToolkitViews[] = "use-toolkit-views"; |
| 1301 |
1299 #endif | 1302 #endif |
1300 | 1303 |
1301 // Use bubbles for content permissions requests instead of infobars. | 1304 // Use bubbles for content permissions requests instead of infobars. |
1302 const char kEnablePermissionsBubbles[] = "enable-permissions-bubbles"; | 1305 const char kEnablePermissionsBubbles[] = "enable-permissions-bubbles"; |
1303 | 1306 |
1304 #if defined(OS_WIN) | 1307 #if defined(OS_WIN) |
1305 // Fallback to XPS. By default connector uses CDD. | 1308 // Fallback to XPS. By default connector uses CDD. |
1306 const char kEnableCloudPrintXps[] = "enable-cloud-print-xps"; | 1309 const char kEnableCloudPrintXps[] = "enable-cloud-print-xps"; |
1307 | 1310 |
1308 // Force-enables the profile shortcut manager. This is needed for tests since | 1311 // Force-enables the profile shortcut manager. This is needed for tests since |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1361 | 1364 |
1362 // ----------------------------------------------------------------------------- | 1365 // ----------------------------------------------------------------------------- |
1363 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1366 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1364 // | 1367 // |
1365 // You were going to just dump your switches here, weren't you? Instead, please | 1368 // You were going to just dump your switches here, weren't you? Instead, please |
1366 // put them in alphabetical order above, or in order inside the appropriate | 1369 // put them in alphabetical order above, or in order inside the appropriate |
1367 // ifdef at the bottom. The order should match the header. | 1370 // ifdef at the bottom. The order should match the header. |
1368 // ----------------------------------------------------------------------------- | 1371 // ----------------------------------------------------------------------------- |
1369 | 1372 |
1370 } // namespace switches | 1373 } // namespace switches |
OLD | NEW |