diff options
author | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-28 23:28:37 +0000 |
---|---|---|
committer | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-28 23:28:37 +0000 |
commit | ab6f2b24e973aa04967fb13c93e6978f039c0125 (patch) | |
tree | d302a45f004e92b7d56bbcb408229875d3650842 /chrome/common | |
parent | 010c52aa178cde4f7b448ddd06a5efe18e7cf9b4 (diff) | |
download | chromium_src-ab6f2b24e973aa04967fb13c93e6978f039c0125.zip chromium_src-ab6f2b24e973aa04967fb13c93e6978f039c0125.tar.gz chromium_src-ab6f2b24e973aa04967fb13c93e6978f039c0125.tar.bz2 |
Pull all the filesystem manipulation out of
ExtensionsServiceBackend into a set of utility functions.
The intent of this is:
a) make extensions_service.cc smaller
b) have smaller pieces hanging around that we can more easily
reconfigure to implement new features.
c) improve testability.
Review URL: http://codereview.chromium.org/159400
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21920 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/extensions/extension.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome/common/extensions/extension.h b/chrome/common/extensions/extension.h index 7b2e12e..dc95ef2 100644 --- a/chrome/common/extensions/extension.h +++ b/chrome/common/extensions/extension.h @@ -39,6 +39,7 @@ class Extension { }; enum InstallType { + INSTALL_ERROR, DOWNGRADE, REINSTALL, UPGRADE, |