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

Unified Diff: chrome/browser/extensions/webstore_installer.cc

Issue 1391893003: NOT FOR REVIEW: Aura on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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: 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,

Powered by Google App Engine
This is Rietveld 408576698