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

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

Issue 298023009: Remove InstallTracker's extension load, unload observer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and shutdown Created 6 years, 7 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.cc
diff --git a/chrome/browser/extensions/install_tracker.cc b/chrome/browser/extensions/install_tracker.cc
index 1a7edb5491e87427347f0f85509328082becf748..d3a19aa351fe42eebdac5018e1f6f89ada7edad0 100644
--- a/chrome/browser/extensions/install_tracker.cc
+++ b/chrome/browser/extensions/install_tracker.cc
@@ -129,19 +129,6 @@ void InstallTracker::Observe(int type,
}
}
-void InstallTracker::OnExtensionLoaded(content::BrowserContext* browser_context,
- const Extension* extension) {
- FOR_EACH_OBSERVER(InstallObserver, observers_, OnExtensionLoaded(extension));
-}
-
-void InstallTracker::OnExtensionUnloaded(
- content::BrowserContext* browser_context,
- const Extension* extension,
- UnloadedExtensionInfo::Reason reason) {
- FOR_EACH_OBSERVER(
- InstallObserver, observers_, OnExtensionUnloaded(extension));
-}
-
void InstallTracker::OnExtensionWillBeInstalled(
content::BrowserContext* browser_context,
const Extension* extension,

Powered by Google App Engine
This is Rietveld 408576698