Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(138)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 12088022: Enable cloud policy by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review feedback Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/pref_names.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 775 matching lines...) Expand 10 before | Expand all | Expand 10 after
786 // Enable Kiosk mode. 786 // Enable Kiosk mode.
787 const char kKioskMode[] = "kiosk"; 787 const char kKioskMode[] = "kiosk";
788 788
789 // Print automatically in kiosk mode. |kKioskMode| must be set as well. 789 // Print automatically in kiosk mode. |kKioskMode| must be set as well.
790 // See http://crbug.com/31395. 790 // See http://crbug.com/31395.
791 const char kKioskModePrinting[] = "kiosk-printing"; 791 const char kKioskModePrinting[] = "kiosk-printing";
792 792
793 // Comma-separated list of directories with component extensions to load. 793 // Comma-separated list of directories with component extensions to load.
794 const char kLoadComponentExtension[] = "load-component-extension"; 794 const char kLoadComponentExtension[] = "load-component-extension";
795 795
796 // If present, cloud policy will be loaded and applied once the user is signed 796 // If present, disables the loading and application of cloud policy for
797 // in to the browser. 797 // signed-in users.
798 const char kLoadCloudPolicyOnSignin[] = "load-cloud-policy-on-signin"; 798 const char kDisableCloudPolicyOnSignin[] = "disable-cloud-policy-on-signin";
799 799
800 // Loads an extension from the specified directory. 800 // Loads an extension from the specified directory.
801 const char kLoadExtension[] = "load-extension"; 801 const char kLoadExtension[] = "load-extension";
802 802
803 // Loads the opencryptoki library into NSS at startup. This is only needed 803 // Loads the opencryptoki library into NSS at startup. This is only needed
804 // temporarily for developers who need to work on WiFi/VPN certificate code. 804 // temporarily for developers who need to work on WiFi/VPN certificate code.
805 // 805 //
806 // TODO(gspencer): Remove this switch once cryptohomed work is finished: 806 // TODO(gspencer): Remove this switch once cryptohomed work is finished:
807 // http://crosbug.com/12295 and http://crosbug.com/12304 807 // http://crosbug.com/12295 and http://crosbug.com/12304
808 const char kLoadOpencryptoki[] = "load-opencryptoki"; 808 const char kLoadOpencryptoki[] = "load-opencryptoki";
(...skipping 821 matching lines...) Expand 10 before | Expand all | Expand 10 after
1630 1630
1631 // ----------------------------------------------------------------------------- 1631 // -----------------------------------------------------------------------------
1632 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1632 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1633 // 1633 //
1634 // You were going to just dump your switches here, weren't you? Instead, please 1634 // You were going to just dump your switches here, weren't you? Instead, please
1635 // put them in alphabetical order above, or in order inside the appropriate 1635 // put them in alphabetical order above, or in order inside the appropriate
1636 // ifdef at the bottom. The order should match the header. 1636 // ifdef at the bottom. The order should match the header.
1637 // ----------------------------------------------------------------------------- 1637 // -----------------------------------------------------------------------------
1638 1638
1639 } // namespace switches 1639 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/pref_names.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698