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

Unified Diff: extensions/common/manifest_constants.cc

Issue 1133013002: Improve parsing manifest for FSP API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed tests. Created 5 years, 7 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/manifest_constants.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/common/manifest_constants.cc
diff --git a/extensions/common/manifest_constants.cc b/extensions/common/manifest_constants.cc
index 01bcbfb2227a6cde29a7f7e35098277513160780..7b2ebbdf77c658c89c797c468b36d4e442b893b2 100644
--- a/extensions/common/manifest_constants.cc
+++ b/extensions/common/manifest_constants.cc
@@ -713,7 +713,14 @@ const char kWebRequestConflictsWithLazyBackground[] =
"The 'webRequest' API cannot be used with event pages.";
#if defined(OS_CHROMEOS)
const char kIllegalPlugins[] =
- "Extensions cannot install plugins on Chrome OS";
+ "Extensions cannot install plugins on Chrome OS.";
+const char kInvalidFileSystemProviderMissingCapabilities[] =
+ "The 'fileSystemProvider' permission requires the "
+ "'file_system_provider_capabilities' section to be specified in the "
+ "manifest.";
+const char kInvalidFileSystemProviderMissingPermission[] =
+ "The 'file_system_provider_capabilities' section requires the "
+ "'fileSystemProvider' permission to be specified in the manifest.";
#endif
} // namespace manifest_errors
« no previous file with comments | « extensions/common/manifest_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698