Chromium Code Reviews| 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 1284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1295 // specified as a parameter. The migration is done under singleton lock, | 1295 // specified as a parameter. The migration is done under singleton lock, |
| 1296 // and sanity checks are made to avoid corrupting the profile. | 1296 // and sanity checks are made to avoid corrupting the profile. |
| 1297 // The browser exits after migration is complete. | 1297 // The browser exits after migration is complete. |
| 1298 const char kMigrateDataDirForSxS[] = "migrate-data-dir-for-sxs"; | 1298 const char kMigrateDataDirForSxS[] = "migrate-data-dir-for-sxs"; |
| 1299 #endif // defined(OS_LINUX) && !defined(OS_CHROMEOS) | 1299 #endif // defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 1300 | 1300 |
| 1301 #if defined(OS_MACOSX) | 1301 #if defined(OS_MACOSX) |
| 1302 // Prevents Chrome from quitting when Chrome Apps are open. | 1302 // Prevents Chrome from quitting when Chrome Apps are open. |
| 1303 const char kAppsKeepChromeAliveInTests[] = "apps-keep-chrome-alive-in-tests"; | 1303 const char kAppsKeepChromeAliveInTests[] = "apps-keep-chrome-alive-in-tests"; |
| 1304 | 1304 |
| 1305 // Enables app shim creation for bookmark apps on Mac. | |
|
benwells
2014/12/15 03:35:03
Actually this flag will cause app shims to be crea
mitchellj
2014/12/15 03:51:29
Good point. I've renamed the flag to be --enable-h
| |
| 1306 const char kEnableAppShimCreation[] = "enable-app-shim-creation"; | |
| 1307 | |
| 1305 // Forcibly disables Lion-style on newer OSes, to allow developers to test the | 1308 // Forcibly disables Lion-style on newer OSes, to allow developers to test the |
| 1306 // older, SnowLeopard-style fullscreen. | 1309 // older, SnowLeopard-style fullscreen. |
| 1307 const char kDisableSystemFullscreenForTesting[] = | 1310 const char kDisableSystemFullscreenForTesting[] = |
| 1308 "disable-system-fullscreen-for-testing"; | 1311 "disable-system-fullscreen-for-testing"; |
| 1309 | 1312 |
| 1310 // A process type (switches::kProcessType) that relaunches the browser. See | 1313 // A process type (switches::kProcessType) that relaunches the browser. See |
| 1311 // chrome/browser/mac/relauncher.h. | 1314 // chrome/browser/mac/relauncher.h. |
| 1312 const char kRelauncherProcess[] = "relauncher"; | 1315 const char kRelauncherProcess[] = "relauncher"; |
| 1313 | 1316 |
| 1314 #endif | 1317 #endif |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1394 | 1397 |
| 1395 // ----------------------------------------------------------------------------- | 1398 // ----------------------------------------------------------------------------- |
| 1396 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1399 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1397 // | 1400 // |
| 1398 // You were going to just dump your switches here, weren't you? Instead, please | 1401 // You were going to just dump your switches here, weren't you? Instead, please |
| 1399 // put them in alphabetical order above, or in order inside the appropriate | 1402 // put them in alphabetical order above, or in order inside the appropriate |
| 1400 // ifdef at the bottom. The order should match the header. | 1403 // ifdef at the bottom. The order should match the header. |
| 1401 // ----------------------------------------------------------------------------- | 1404 // ----------------------------------------------------------------------------- |
| 1402 | 1405 |
| 1403 } // namespace switches | 1406 } // namespace switches |
| OLD | NEW |