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

Side by Side Diff: extensions/common/switches.cc

Issue 57813003: Reland: Convert ExtensionProcessManager to BrowserContext, part 1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: disable on windows Created 7 years, 1 month 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 | « extensions/common/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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "extensions/common/switches.h" 5 #include "extensions/common/switches.h"
6 6
7 namespace extensions { 7 namespace extensions {
8 8
9 namespace switches { 9 namespace switches {
10 10
11 // Allows the browser to load extensions that lack a modern manifest when that 11 // Allows the browser to load extensions that lack a modern manifest when that
12 // would otherwise be forbidden. 12 // would otherwise be forbidden.
13 const char kAllowLegacyExtensionManifests[] = 13 const char kAllowLegacyExtensionManifests[] =
14 "allow-legacy-extension-manifests"; 14 "allow-legacy-extension-manifests";
15 15
16 // Allows injecting extensions and user scripts on the extensions gallery 16 // Allows injecting extensions and user scripts on the extensions gallery
17 // site. Normally prevented for security reasons, but can be useful for 17 // site. Normally prevented for security reasons, but can be useful for
18 // automation testing of the gallery. 18 // automation testing of the gallery.
19 const char kAllowScriptingGallery[] = "allow-scripting-gallery"; 19 const char kAllowScriptingGallery[] = "allow-scripting-gallery";
20 20
21 // Enables extension APIs that are in development. 21 // Enables extension APIs that are in development.
22 const char kEnableExperimentalExtensionApis[] = 22 const char kEnableExperimentalExtensionApis[] =
23 "enable-experimental-extension-apis"; 23 "enable-experimental-extension-apis";
24 24
25 // Allows the ErrorConsole to collect runtime and manifest errors, and display 25 // Allows the ErrorConsole to collect runtime and manifest errors, and display
26 // them in the chrome:extensions page. 26 // them in the chrome:extensions page.
27 const char kErrorConsole[] = "error-console"; 27 const char kErrorConsole[] = "error-console";
28 28
29 // The time in seconds that an extension event page can be idle before it
30 // is shut down.
31 const char kEventPageIdleTime[] = "event-page-idle-time";
32
33 // The time in seconds that an extension event page has between being notified
34 // of its impending unload and that unload happening.
35 const char kEventPageSuspendingTime[] = "event-page-unloading-time";
36
29 // Enables extensions running scripts on chrome:// URLs. 37 // Enables extensions running scripts on chrome:// URLs.
30 // Extensions still need to explicitly request access to chrome:// URLs in the 38 // Extensions still need to explicitly request access to chrome:// URLs in the
31 // manifest. 39 // manifest.
32 const char kExtensionsOnChromeURLs[] = "extensions-on-chrome-urls"; 40 const char kExtensionsOnChromeURLs[] = "extensions-on-chrome-urls";
33 41
34 // Makes component extensions appear in chrome://settings/extensions. 42 // Makes component extensions appear in chrome://settings/extensions.
35 const char kShowComponentExtensionOptions[] = 43 const char kShowComponentExtensionOptions[] =
36 "show-component-extension-options"; 44 "show-component-extension-options";
37 45
38 } // namespace switches 46 } // namespace switches
39 47
40 } // namespace extensions 48 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/common/switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698