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

Unified Diff: chrome/browser/ui/app_list/recommended_apps.cc

Issue 175263003: Add chrome.webstore API methods to allow sites to see progress of installation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 10 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/ui/app_list/recommended_apps.cc
diff --git a/chrome/browser/ui/app_list/recommended_apps.cc b/chrome/browser/ui/app_list/recommended_apps.cc
index 94b4edd3395be5b6062675a83237437b02a521e3..01c20df1023901feb6a61ba061453d21568bb6e1 100644
--- a/chrome/browser/ui/app_list/recommended_apps.cc
+++ b/chrome/browser/ui/app_list/recommended_apps.cc
@@ -98,14 +98,6 @@ void RecommendedApps::Update() {
}
}
-void RecommendedApps::OnBeginExtensionInstall(
- const ExtensionInstallParams& params) {}
-
-void RecommendedApps::OnDownloadProgress(const std::string& extension_id,
- int percent_downloaded) {}
-
-void RecommendedApps::OnInstallFailure(const std::string& extension_id) {}
-
void RecommendedApps::OnExtensionInstalled(
const extensions::Extension* extension) {
Update();
@@ -126,11 +118,4 @@ void RecommendedApps::OnExtensionUninstalled(
Update();
}
-void RecommendedApps::OnAppsReordered() {}
-
-void RecommendedApps::OnAppInstalledToAppList(
- const std::string& extension_id) {}
-
-void RecommendedApps::OnShutdown() {}
-
} // namespace app_list

Powered by Google App Engine
This is Rietveld 408576698