Index: chrome/common/extensions/extension_manifest_constants.cc |
diff --git a/chrome/common/extensions/extension_manifest_constants.cc b/chrome/common/extensions/extension_manifest_constants.cc |
index bf05a5d46ada7fd7785766f5768726269fbbe4dc..ab1027887432629d0a9712240638ca3f3fe552cc 100644 |
--- a/chrome/common/extensions/extension_manifest_constants.cc |
+++ b/chrome/common/extensions/extension_manifest_constants.cc |
@@ -12,7 +12,7 @@ const char kApp[] = "app"; |
const char kBackgroundAllowJsAccess[] = "background.allow_js_access"; |
const char kBackgroundPage[] = "background.page"; |
const char kBackgroundPageLegacy[] = "background_page"; |
-const char kBackgroundTransient[] = "background.transient"; |
+const char kBackgroundPersistent[] = "background.persistent"; |
const char kBackgroundScripts[] = "background.scripts"; |
const char kBrowserAction[] = "browser_action"; |
const char kChromeURLOverrides[] = "chrome_url_overrides"; |
@@ -197,11 +197,11 @@ const char kInvalidBackgroundScripts[] = |
const char kInvalidBackgroundInHostedApp[] = |
"Invalid value for 'background_page'. Hosted apps must specify an " |
"absolute HTTPS URL for the background page."; |
-const char kInvalidBackgroundTransient[] = |
- "Invalid value for 'background.transient'."; |
-const char kInvalidBackgroundTransientNoPage[] = |
+const char kInvalidBackgroundPersistent[] = |
+ "Invalid value for 'background.persistent'."; |
+const char kInvalidBackgroundPersistentNoPage[] = |
"Must specify one of background.page or background.scripts to use" |
- " background.transient."; |
+ " background.persistent."; |
const char kInvalidBrowserAction[] = |
"Invalid value for 'browser_action'."; |
const char kInvalidChromeURLOverrides[] = |