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 754 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
765 // Used for testing - keeps browser alive after last browser window closes. | 765 // Used for testing - keeps browser alive after last browser window closes. |
766 const char kKeepAliveForTest[] = "keep-alive-for-test"; | 766 const char kKeepAliveForTest[] = "keep-alive-for-test"; |
767 | 767 |
768 // Enable Kiosk mode. | 768 // Enable Kiosk mode. |
769 const char kKioskMode[] = "kiosk"; | 769 const char kKioskMode[] = "kiosk"; |
770 | 770 |
771 // Print automatically in kiosk mode. |kKioskMode| must be set as well. | 771 // Print automatically in kiosk mode. |kKioskMode| must be set as well. |
772 // See http://crbug.com/31395. | 772 // See http://crbug.com/31395. |
773 const char kKioskModePrinting[] = "kiosk-printing"; | 773 const char kKioskModePrinting[] = "kiosk-printing"; |
774 | 774 |
775 // Use this server address ledger. | 775 // Address for the ledger (Copresence) server. |
| 776 // Ledger is deprecated; use the chrome.copresence API instead. |
776 const char kLedgerServer[] = "ledger-server"; | 777 const char kLedgerServer[] = "ledger-server"; |
777 | 778 |
778 // Use this tracing token for ledger. | 779 // Tracing token for calls to the ledger (Copresence) server. |
| 780 // Ledger is deprecated; use the chrome.copresence API instead. |
779 const char kLedgerTracingToken[] = "ledger-tracing-token"; | 781 const char kLedgerTracingToken[] = "ledger-tracing-token"; |
780 | 782 |
781 // Causes Chrome to attempt to get metadata from the webstore for the | 783 // Causes Chrome to attempt to get metadata from the webstore for the |
782 // given item, and then prompt the user to download and install it. | 784 // given item, and then prompt the user to download and install it. |
783 const char kLimitedInstallFromWebstore[] = "limited-install-from-webstore"; | 785 const char kLimitedInstallFromWebstore[] = "limited-install-from-webstore"; |
784 | 786 |
785 // Comma-separated list of directories with component extensions to load. | 787 // Comma-separated list of directories with component extensions to load. |
786 const char kLoadComponentExtension[] = "load-component-extension"; | 788 const char kLoadComponentExtension[] = "load-component-extension"; |
787 | 789 |
788 // Loads an extension from the specified directory. | 790 // Loads an extension from the specified directory. |
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1365 | 1367 |
1366 // ----------------------------------------------------------------------------- | 1368 // ----------------------------------------------------------------------------- |
1367 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1369 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1368 // | 1370 // |
1369 // You were going to just dump your switches here, weren't you? Instead, please | 1371 // You were going to just dump your switches here, weren't you? Instead, please |
1370 // put them in alphabetical order above, or in order inside the appropriate | 1372 // put them in alphabetical order above, or in order inside the appropriate |
1371 // ifdef at the bottom. The order should match the header. | 1373 // ifdef at the bottom. The order should match the header. |
1372 // ----------------------------------------------------------------------------- | 1374 // ----------------------------------------------------------------------------- |
1373 | 1375 |
1374 } // namespace switches | 1376 } // namespace switches |
OLD | NEW |