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 803 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
814 // Enable Kiosk mode. | 814 // Enable Kiosk mode. |
815 const char kKioskMode[] = "kiosk"; | 815 const char kKioskMode[] = "kiosk"; |
816 | 816 |
817 // Print automatically in kiosk mode. |kKioskMode| must be set as well. | 817 // Print automatically in kiosk mode. |kKioskMode| must be set as well. |
818 // See http://crbug.com/31395. | 818 // See http://crbug.com/31395. |
819 const char kKioskModePrinting[] = "kiosk-printing"; | 819 const char kKioskModePrinting[] = "kiosk-printing"; |
820 | 820 |
821 // Comma-separated list of directories with component extensions to load. | 821 // Comma-separated list of directories with component extensions to load. |
822 const char kLoadComponentExtension[] = "load-component-extension"; | 822 const char kLoadComponentExtension[] = "load-component-extension"; |
823 | 823 |
| 824 // If present, cloud policy will be loaded and applied once the user is signed |
| 825 // in to the browser. |
| 826 const char kLoadCloudPolicyOnSignin[] = "load-cloud-policy-on-signin"; |
| 827 |
824 // Loads an extension from the specified directory. | 828 // Loads an extension from the specified directory. |
825 const char kLoadExtension[] = "load-extension"; | 829 const char kLoadExtension[] = "load-extension"; |
826 | 830 |
827 // Loads the opencryptoki library into NSS at startup. This is only needed | 831 // Loads the opencryptoki library into NSS at startup. This is only needed |
828 // temporarily for developers who need to work on WiFi/VPN certificate code. | 832 // temporarily for developers who need to work on WiFi/VPN certificate code. |
829 // | 833 // |
830 // TODO(gspencer): Remove this switch once cryptohomed work is finished: | 834 // TODO(gspencer): Remove this switch once cryptohomed work is finished: |
831 // http://crosbug.com/12295 and http://crosbug.com/12304 | 835 // http://crosbug.com/12295 and http://crosbug.com/12304 |
832 const char kLoadOpencryptoki[] = "load-opencryptoki"; | 836 const char kLoadOpencryptoki[] = "load-opencryptoki"; |
833 | 837 |
(...skipping 715 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1549 | 1553 |
1550 // ----------------------------------------------------------------------------- | 1554 // ----------------------------------------------------------------------------- |
1551 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1555 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1552 // | 1556 // |
1553 // You were going to just dump your switches here, weren't you? Instead, please | 1557 // You were going to just dump your switches here, weren't you? Instead, please |
1554 // put them in alphabetical order above, or in order inside the appropriate | 1558 // put them in alphabetical order above, or in order inside the appropriate |
1555 // ifdef at the bottom. The order should match the header. | 1559 // ifdef at the bottom. The order should match the header. |
1556 // ----------------------------------------------------------------------------- | 1560 // ----------------------------------------------------------------------------- |
1557 | 1561 |
1558 } // namespace switches | 1562 } // namespace switches |
OLD | NEW |