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

Unified Diff: extensions/common/manifest.h

Issue 24365004: Add EXTERNAL_POLICY to list of possible extension locations (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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
Index: extensions/common/manifest.h
diff --git a/extensions/common/manifest.h b/extensions/common/manifest.h
index c4ceb3870cc800c4c18c85b2c00af9c5cc9b265f..13d9a3c5df73f8443d64310913902cfd8e1dd1a9 100644
--- a/extensions/common/manifest.h
+++ b/extensions/common/manifest.h
@@ -40,6 +40,8 @@ class Manifest {
EXTERNAL_POLICY_DOWNLOAD, // A crx file from an external directory (via
// admin policies), installed from an update URL.
COMMAND_LINE, // --load-extension.
+ EXTERNAL_POLICY, // A crx file from an external directory (via admin
+ // policies).
not at google - send to devlin 2013/09/23 21:17:32 this explanation is awfully similar to EXTERNAL_PO
bartfab (slow) 2013/09/26 14:29:54 Done.
NUM_LOCATIONS
};
@@ -69,6 +71,7 @@ class Manifest {
return location == EXTERNAL_PREF ||
location == EXTERNAL_REGISTRY ||
location == EXTERNAL_PREF_DOWNLOAD ||
+ location == EXTERNAL_POLICY ||
location == EXTERNAL_POLICY_DOWNLOAD;
}

Powered by Google App Engine
This is Rietveld 408576698