Index: chrome/browser/extensions/webstore_installer.cc |
diff --git a/chrome/browser/extensions/webstore_installer.cc b/chrome/browser/extensions/webstore_installer.cc |
index 6ab5475321b80b78b06a110033e03dd770168ce5..9d9d5583888fb29ad881e746836bbf5ca1e00fc9 100644 |
--- a/chrome/browser/extensions/webstore_installer.cc |
+++ b/chrome/browser/extensions/webstore_installer.cc |
@@ -730,6 +730,9 @@ void WebstoreInstaller::StartCrxInstaller(const DownloadItem& download) { |
const Approval* approval = GetAssociatedApproval(download); |
DCHECK(approval); |
+#if defined(OS_ANDROID) |
+ NOTIMPLEMENTED(); |
+#else |
crx_installer_ = download_crx_util::CreateCrxInstaller(profile_, download); |
crx_installer_->set_expected_id(approval->extension_id); |
@@ -737,6 +740,7 @@ void WebstoreInstaller::StartCrxInstaller(const DownloadItem& download) { |
crx_installer_->set_allow_silent_install(true); |
crx_installer_->InstallCrx(download.GetFullPath()); |
+#endif |
} |
void WebstoreInstaller::ReportFailure(const std::string& error, |