| 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 67bef539a216ed77336d8e3c8b175cbae8b6c8d3..24947190f7f282e138be581982155d83d096e1e7 100644
|
| --- a/chrome/common/extensions/extension_manifest_constants.cc
|
| +++ b/chrome/common/extensions/extension_manifest_constants.cc
|
| @@ -30,6 +30,7 @@ const char kDevToolsPage[] = "devtools_page";
|
| const char kEventName[] = "event_name";
|
| const char kExcludeGlobs[] = "exclude_globs";
|
| const char kExcludeMatches[] = "exclude_matches";
|
| +const char kFileAccessList[] = "file_access";
|
| const char kFileFilters[] = "file_filters";
|
| const char kFileBrowserHandlers[] = "file_browser_handlers";
|
| const char kHomepageURL[] = "homepage_url";
|
| @@ -224,6 +225,10 @@ const char kInvalidExcludeMatch[] =
|
| "Invalid value for 'content_scripts[*].exclude_matches[*]': *";
|
| const char kInvalidExcludeMatches[] =
|
| "Invalid value for 'content_scripts[*].exclude_matches'.";
|
| +const char kInvalidFileAccessList[] =
|
| + "Invalid value for 'file_access'.";
|
| +const char kInvalidFileAccessValue[] =
|
| + "Invalid value for 'file_access[*]'.";
|
| const char kInvalidFileBrowserHandler[] =
|
| "Invalid value for 'file_browser_handers'.";
|
| const char kInvalidFileFiltersList[] =
|
|
|