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

Unified Diff: chrome/browser/extensions/install_tracker.h

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/extensions/install_tracker.h
diff --git a/chrome/browser/extensions/install_tracker.h b/chrome/browser/extensions/install_tracker.h
index 2f9a8809888e0fd026acab26e821f329d5b90927..7861e2550229450017b6b58a772ec84696cd835e 100644
--- a/chrome/browser/extensions/install_tracker.h
+++ b/chrome/browser/extensions/install_tracker.h
@@ -30,8 +30,10 @@ class InstallTracker : public BrowserContextKeyedService,
void OnBeginExtensionInstall(
const InstallObserver::ExtensionInstallParams& params);
+ void OnBeginExtensionDownload(const std::string& extension_id);
void OnDownloadProgress(const std::string& extension_id,
int percent_downloaded);
+ void OnBeginCrxInstall(const std::string& extension_id);
void OnInstallFailure(const std::string& extension_id);
// Overriddes for BrowserContextKeyedService:

Powered by Google App Engine
This is Rietveld 408576698