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