Home | History | Annotate | Download | only in extensions

Lines Matching full:extension

9 #include "chrome/common/extensions/extension.h"
13 // A pending extension is an extension that hasn't been installed yet
15 // update URL of a pending extension may be blank, in which case a
21 typedef bool (*ShouldAllowInstallPredicate)(const Extension&);
30 Extension::Location install_source);
38 // |should_allow_install| on an extension. After an extension is unpacked,
39 // this function is run. If it returns true, the extension is installed.
40 // If not, the extension is discarded. This allows creators of
42 // that can only be tested once the extension is unpacked.
43 bool ShouldAllowInstall(const Extension& extension) const {
44 return should_allow_install_(extension);
52 Extension::Location install_source() const { return install_source_; }
57 // When the extension is about to be installed, this function is
66 Extension::Location install_source_;