Chromium Code Reviews| 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; |
| } |