| 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 24947190f7f282e138be581982155d83d096e1e7..dca8fd4ff24e45d427718d72d7d47fd076884b5d 100644
|
| --- a/chrome/common/extensions/extension_manifest_constants.cc
|
| +++ b/chrome/common/extensions/extension_manifest_constants.cc
|
| @@ -13,7 +13,7 @@ const char kBackground[] = "background";
|
| const char kBackgroundAllowJsAccess[] = "background.allow_js_access";
|
| const char kBackgroundPage[] = "background.page";
|
| const char kBackgroundPageLegacy[] = "background_page";
|
| -const char kBackgroundPersistent[] = "background.persistent";
|
| +const char kBackgroundTransient[] = "background.transient";
|
| const char kBackgroundScripts[] = "background.scripts";
|
| const char kBrowserAction[] = "browser_action";
|
| const char kChromeURLOverrides[] = "chrome_url_overrides";
|
| @@ -194,11 +194,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 kInvalidBackgroundPersistent[] =
|
| - "Invalid value for 'background.persistent'.";
|
| -const char kInvalidBackgroundPersistentNoPage[] =
|
| +const char kInvalidBackgroundTransient[] =
|
| + "Invalid value for 'background.transient'.";
|
| +const char kInvalidBackgroundTransientNoPage[] =
|
| "Must specify one of background.page or background.scripts to use"
|
| - " background.persistent.";
|
| + " background.transient.";
|
| const char kInvalidBrowserAction[] =
|
| "Invalid value for 'browser_action'.";
|
| const char kInvalidChromeURLOverrides[] =
|
|
|