| 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 821 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 832 // Used for testing - keeps browser alive after last browser window closes. | 832 // Used for testing - keeps browser alive after last browser window closes. | 
| 833 const char kKeepAliveForTest[]              = "keep-alive-for-test"; | 833 const char kKeepAliveForTest[]              = "keep-alive-for-test"; | 
| 834 | 834 | 
| 835 // Enable Kiosk mode. | 835 // Enable Kiosk mode. | 
| 836 const char kKioskMode[]                     = "kiosk"; | 836 const char kKioskMode[]                     = "kiosk"; | 
| 837 | 837 | 
| 838 // Print automatically in kiosk mode. |kKioskMode| must be set as well. | 838 // Print automatically in kiosk mode. |kKioskMode| must be set as well. | 
| 839 // See http://crbug.com/31395. | 839 // See http://crbug.com/31395. | 
| 840 const char kKioskModePrinting[]             = "kiosk-printing"; | 840 const char kKioskModePrinting[]             = "kiosk-printing"; | 
| 841 | 841 | 
|  | 842 // Use this server address ledger. | 
|  | 843 const char kLedgerServer[]                  = "ledger-server"; | 
|  | 844 | 
|  | 845 // Use this tracing token for ledger. | 
|  | 846 const char kLedgerTracingToken[]            = "ledger-tracing-token"; | 
|  | 847 | 
| 842 // Causes Chrome to attempt to get metadata from the webstore for the | 848 // Causes Chrome to attempt to get metadata from the webstore for the | 
| 843 // given item, and then prompt the user to download and install it. | 849 // given item, and then prompt the user to download and install it. | 
| 844 const char kLimitedInstallFromWebstore[]    = "limited-install-from-webstore"; | 850 const char kLimitedInstallFromWebstore[]    = "limited-install-from-webstore"; | 
| 845 | 851 | 
| 846 // Comma-separated list of directories with component extensions to load. | 852 // Comma-separated list of directories with component extensions to load. | 
| 847 const char kLoadComponentExtension[]        = "load-component-extension"; | 853 const char kLoadComponentExtension[]        = "load-component-extension"; | 
| 848 | 854 | 
| 849 // Loads an extension from the specified directory. | 855 // Loads an extension from the specified directory. | 
| 850 const char kLoadExtension[]                 = "load-extension"; | 856 const char kLoadExtension[]                 = "load-extension"; | 
| 851 | 857 | 
| (...skipping 616 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1468 | 1474 | 
| 1469 // ----------------------------------------------------------------------------- | 1475 // ----------------------------------------------------------------------------- | 
| 1470 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1476 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 
| 1471 // | 1477 // | 
| 1472 // You were going to just dump your switches here, weren't you? Instead, please | 1478 // You were going to just dump your switches here, weren't you? Instead, please | 
| 1473 // put them in alphabetical order above, or in order inside the appropriate | 1479 // put them in alphabetical order above, or in order inside the appropriate | 
| 1474 // ifdef at the bottom. The order should match the header. | 1480 // ifdef at the bottom. The order should match the header. | 
| 1475 // ----------------------------------------------------------------------------- | 1481 // ----------------------------------------------------------------------------- | 
| 1476 | 1482 | 
| 1477 }  // namespace switches | 1483 }  // namespace switches | 
| OLD | NEW | 
|---|