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