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 1323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1334 const char kMigrateDataDirForSxS[] = "migrate-data-dir-for-sxs"; | 1334 const char kMigrateDataDirForSxS[] = "migrate-data-dir-for-sxs"; |
1335 | 1335 |
1336 // Allows sending text-to-speech requests to speech-dispatcher, a common | 1336 // Allows sending text-to-speech requests to speech-dispatcher, a common |
1337 // Linux speech service. Because it's buggy, the user must explicitly | 1337 // Linux speech service. Because it's buggy, the user must explicitly |
1338 // enable it so that visiting a random webpage can't cause instability. | 1338 // enable it so that visiting a random webpage can't cause instability. |
1339 const char kEnableSpeechDispatcher[] = "enable-speech-dispatcher"; | 1339 const char kEnableSpeechDispatcher[] = "enable-speech-dispatcher"; |
1340 #endif // defined(OS_LINUX) && !defined(OS_CHROMEOS) | 1340 #endif // defined(OS_LINUX) && !defined(OS_CHROMEOS) |
1341 | 1341 |
1342 #if defined(OS_MACOSX) | 1342 #if defined(OS_MACOSX) |
1343 // Prevents Chrome from quitting when Chrome Apps are open. | 1343 // Prevents Chrome from quitting when Chrome Apps are open. |
1344 const char kAppsKeepChromeAlive[] = "apps-keep-chrome-alive"; | 1344 const char kAppsKeepChromeAliveInTests[] = "apps-keep-chrome-alive-in-tests"; |
1345 | 1345 |
1346 // Forcibly disables Lion-style on newer OSes, to allow developers to test the | 1346 // Forcibly disables Lion-style on newer OSes, to allow developers to test the |
1347 // older, SnowLeopard-style fullscreen. | 1347 // older, SnowLeopard-style fullscreen. |
1348 const char kDisableSystemFullscreenForTesting[] = | 1348 const char kDisableSystemFullscreenForTesting[] = |
1349 "disable-system-fullscreen-for-testing"; | 1349 "disable-system-fullscreen-for-testing"; |
1350 | 1350 |
1351 // Enables a simplified fullscreen UI on Mac. | 1351 // Enables a simplified fullscreen UI on Mac. |
1352 const char kEnableSimplifiedFullscreen[] = "enable-simplified-fullscreen"; | 1352 const char kEnableSimplifiedFullscreen[] = "enable-simplified-fullscreen"; |
1353 | 1353 |
1354 // A process type (switches::kProcessType) that relaunches the browser. See | 1354 // A process type (switches::kProcessType) that relaunches the browser. See |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1417 | 1417 |
1418 // ----------------------------------------------------------------------------- | 1418 // ----------------------------------------------------------------------------- |
1419 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1419 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1420 // | 1420 // |
1421 // You were going to just dump your switches here, weren't you? Instead, please | 1421 // You were going to just dump your switches here, weren't you? Instead, please |
1422 // put them in alphabetical order above, or in order inside the appropriate | 1422 // put them in alphabetical order above, or in order inside the appropriate |
1423 // ifdef at the bottom. The order should match the header. | 1423 // ifdef at the bottom. The order should match the header. |
1424 // ----------------------------------------------------------------------------- | 1424 // ----------------------------------------------------------------------------- |
1425 | 1425 |
1426 } // namespace switches | 1426 } // namespace switches |
OLD | NEW |