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