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