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

Unified Diff: extensions/common/switches.cc

Issue 136473004: Move kExtensionProcess to src/extensions/common/switches.cc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix app_shell (switches) Created 6 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « extensions/common/switches.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/common/switches.cc
diff --git a/extensions/common/switches.cc b/extensions/common/switches.cc
index 2c6a39be27d744573dc4e1fed1197a907eeca230..32f364590d175531a6393184d7022359f1527161 100644
--- a/extensions/common/switches.cc
+++ b/extensions/common/switches.cc
@@ -9,7 +9,7 @@ namespace extensions {
namespace switches {
// Allows non-https URL for background_page for hosted apps.
-const char kAllowHTTPBackgroundPage[] = "allow-http-background-page";
+const char kAllowHTTPBackgroundPage[] = "allow-http-background-page";
// Allows the browser to load extensions that lack a modern manifest when that
// would otherwise be forbidden.
@@ -39,11 +39,14 @@ const char kErrorConsole[] = "error-console";
// The time in milliseconds that an extension event page can be idle before it
// is shut down.
-const char kEventPageIdleTime[] = "event-page-idle-time";
+const char kEventPageIdleTime[] = "event-page-idle-time";
// The time in milliseconds that an extension event page has between being
// notified of its impending unload and that unload happening.
-const char kEventPageSuspendingTime[] = "event-page-unloading-time";
+const char kEventPageSuspendingTime[] = "event-page-unloading-time";
+
+// Marks a renderer as extension process.
+const char kExtensionProcess[] = "extension-process";
// Enables extensions running scripts on chrome:// URLs.
// Extensions still need to explicitly request access to chrome:// URLs in the
« 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