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

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

Issue 15947007: Move application restart and relaunch code out of ExtensionService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Pafooey Created 7 years, 6 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') | no next file » | 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 836 matching lines...) Expand 10 before | Expand all | Expand 10 after
847 const char kKioskMode[] = "kiosk"; 847 const char kKioskMode[] = "kiosk";
848 848
849 // Print automatically in kiosk mode. |kKioskMode| must be set as well. 849 // Print automatically in kiosk mode. |kKioskMode| must be set as well.
850 // See http://crbug.com/31395. 850 // See http://crbug.com/31395.
851 const char kKioskModePrinting[] = "kiosk-printing"; 851 const char kKioskModePrinting[] = "kiosk-printing";
852 852
853 // Causes Chrome to attempt to get metadata from the webstore for the 853 // Causes Chrome to attempt to get metadata from the webstore for the
854 // given item, and then prompt the user to download and install it. 854 // given item, and then prompt the user to download and install it.
855 const char kLimitedInstallFromWebstore[] = "limited-install-from-webstore"; 855 const char kLimitedInstallFromWebstore[] = "limited-install-from-webstore";
856 856
857 // Loads an app from the specified directory and launches it.
858 const char kLoadAndLaunchApp[] = "load-and-launch-app";
859
860 // Comma-separated list of directories with component extensions to load. 857 // Comma-separated list of directories with component extensions to load.
861 const char kLoadComponentExtension[] = "load-component-extension"; 858 const char kLoadComponentExtension[] = "load-component-extension";
862 859
863 // If present, disables the loading and application of cloud policy for 860 // If present, disables the loading and application of cloud policy for
864 // signed-in users. 861 // signed-in users.
865 const char kDisableCloudPolicyOnSignin[] = "disable-cloud-policy-on-signin"; 862 const char kDisableCloudPolicyOnSignin[] = "disable-cloud-policy-on-signin";
866 863
867 // Loads an extension from the specified directory. 864 // Loads an extension from the specified directory.
868 const char kLoadExtension[] = "load-extension"; 865 const char kLoadExtension[] = "load-extension";
869 866
(...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after
1592 1589
1593 // ----------------------------------------------------------------------------- 1590 // -----------------------------------------------------------------------------
1594 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1591 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1595 // 1592 //
1596 // You were going to just dump your switches here, weren't you? Instead, please 1593 // You were going to just dump your switches here, weren't you? Instead, please
1597 // put them in alphabetical order above, or in order inside the appropriate 1594 // put them in alphabetical order above, or in order inside the appropriate
1598 // ifdef at the bottom. The order should match the header. 1595 // ifdef at the bottom. The order should match the header.
1599 // ----------------------------------------------------------------------------- 1596 // -----------------------------------------------------------------------------
1600 1597
1601 } // namespace switches 1598 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698