| Index: chrome/common/extensions/extension_constants.cc
|
| diff --git a/chrome/common/extensions/extension_constants.cc b/chrome/common/extensions/extension_constants.cc
|
| index e8d55d3b053d1721d8a1479f25ea5b906a3bc36b..27bdbb5df303aa79edd6d7445677059e280f5c3f 100644
|
| --- a/chrome/common/extensions/extension_constants.cc
|
| +++ b/chrome/common/extensions/extension_constants.cc
|
| @@ -18,6 +18,7 @@ const char kApp[] = "app";
|
| const char kBackground[] = "background";
|
| const char kBackgroundPage[] = "background.page";
|
| const char kBackgroundPageLegacy[] = "background_page";
|
| +const char kBackgroundScripts[] = "background.scripts";
|
| const char kBrowserAction[] = "browser_action";
|
| const char kChromeURLOverrides[] = "chrome_url_overrides";
|
| const char kContentScripts[] = "content_scripts";
|
| @@ -171,6 +172,10 @@ const char kInvalidAllFrames[] =
|
| "Invalid value for 'content_scripts[*].all_frames'.";
|
| const char kInvalidBackground[] =
|
| "Invalid value for 'background_page'.";
|
| +const char kInvalidBackgroundScript[] =
|
| + "Invalid value for 'background.scripts[*]'.";
|
| +const char kInvalidBackgroundScripts[] =
|
| + "Invalid value for 'background.scripts'.";
|
| const char kInvalidBackgroundInHostedApp[] =
|
| "Invalid value for 'background_page'. Hosted apps must specify an "
|
| "absolute HTTPS URL for the background page.";
|
| @@ -501,6 +506,9 @@ const char kDecodedImagesFilename[] = "DECODED_IMAGES";
|
| // The file to write our decoded message catalogs to, relative to the
|
| // extension_path.
|
| const char kDecodedMessageCatalogsFilename[] = "DECODED_MESSAGE_CATALOGS";
|
| +
|
| +const char kGeneratedBackgroundPageFilename[] =
|
| + "_generated_background_page.html";
|
| }
|
|
|
| namespace extension_misc {
|
|
|