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

Unified Diff: chrome/browser/chromeos/extensions/device_local_account_management_policy_provider.cc

Issue 2684753003: Added arc_metadata manifest entry & fileSystem permission dict (Closed)
Patch Set: Created 3 years, 10 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/extensions/device_local_account_management_policy_provider.cc
diff --git a/chrome/browser/chromeos/extensions/device_local_account_management_policy_provider.cc b/chrome/browser/chromeos/extensions/device_local_account_management_policy_provider.cc
index 054591248faf5ce481252c4980a357fa8b6b9f35..472707fbc97434edb2c6dd5998806ad7c04075a6 100644
--- a/chrome/browser/chromeos/extensions/device_local_account_management_policy_provider.cc
+++ b/chrome/browser/chromeos/extensions/device_local_account_management_policy_provider.cc
@@ -131,6 +131,11 @@ const char* const kSafeManifestEntries[] = {
// Special-cased in IsSafeForPublicSession().
// emk::kApp,
+ // Not a real manifest entry (doesn't show up in code search). All legacy
+ // ARC apps have this dictionary (data is stuffed there to be consumed by
+ // the ARC runtime).
+ "arc_metadata",
+
// Documented in https://developer.chrome.com/extensions/manifest but not
// implemented anywhere. Still, a lot of apps use it.
"author",
@@ -683,8 +688,8 @@ const char* const kSafePermissionStrings[] = {
// Some permissions take the form of a dictionary. See |kSafePermissionStrings|
// for permission strings (and for more documentation).
const char* const kSafePermissionDicts[] = {
- // TBD
- // "fileSystem",
+ // Dictionary form of the above "fileSystem" permission string.
+ "fileSystem",
// Just another type of connectivity.
"socket",
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698