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

Unified Diff: extensions/common/extension.h

Issue 264763002: Support remote installation of extensions and apps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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/extension.h
diff --git a/extensions/common/extension.h b/extensions/common/extension.h
index 3354fa625c2a170096a871cc86cb70c285e6b5fd..e40d153ff218123d7fe885712ed1ca0c69e6f306 100644
--- a/extensions/common/extension.h
+++ b/extensions/common/extension.h
@@ -99,7 +99,8 @@ class Extension : public base::RefCountedThreadSafe<Extension> {
DISABLE_KNOWN_DISABLED = 1 << 7,
DISABLE_NOT_VERIFIED = 1 << 8, // Disabled because we could not verify
// the install.
- DISABLE_GREYLIST = 1 << 9
+ DISABLE_GREYLIST = 1 << 9,
+ DISABLE_REMOTE_INSTALL = 1 << 10
};
enum InstallType {

Powered by Google App Engine
This is Rietveld 408576698