Home | History | Annotate | Download | only in extensions

Lines Matching defs:UnpackedInstaller

106 scoped_refptr<UnpackedInstaller> UnpackedInstaller::Create(
109 return scoped_refptr<UnpackedInstaller>(
110 new UnpackedInstaller(extension_service));
113 UnpackedInstaller::UnpackedInstaller(ExtensionService* extension_service)
122 UnpackedInstaller::~UnpackedInstaller() {
127 void UnpackedInstaller::Load(const base::FilePath& path_in) {
133 base::Bind(&UnpackedInstaller::GetAbsolutePath, this));
136 bool UnpackedInstaller::LoadFromCommandLine(const base::FilePath& path_in,
174 void UnpackedInstaller::ShowInstallPrompt() {
187 base::Bind(&UnpackedInstaller::CallCheckRequirements, this));
194 void UnpackedInstaller::CallCheckRequirements() {
196 base::Bind(&UnpackedInstaller::OnRequirementsChecked, this));
199 void UnpackedInstaller::OnRequirementsChecked(
211 int UnpackedInstaller::GetFlags() {
228 bool UnpackedInstaller::IsLoadingUnpackedAllowed() const {
237 void UnpackedInstaller::GetAbsolutePath() {
247 base::Bind(&UnpackedInstaller::ReportExtensionLoadError, this, error));
252 base::Bind(&UnpackedInstaller::CheckExtensionFileAccess, this));
255 void UnpackedInstaller::CheckExtensionFileAccess() {
268 base::Bind(&UnpackedInstaller::LoadWithFileAccess, this, GetFlags()));
271 void UnpackedInstaller::LoadWithFileAccess(int flags) {
287 base::Bind(&UnpackedInstaller::ReportExtensionLoadError, this, error));
294 base::Bind(&UnpackedInstaller::ShowInstallPrompt, this));
297 void UnpackedInstaller::ReportExtensionLoadError(const std::string &error) {
311 void UnpackedInstaller::ConfirmInstall() {