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

Unified Diff: chrome/browser/background_mode_manager.cc

Issue 5968009: Change extension unload notification to indicate updates.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years 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/background_mode_manager.cc
===================================================================
--- chrome/browser/background_mode_manager.cc (revision 69996)
+++ chrome/browser/background_mode_manager.cc (working copy)
@@ -129,7 +129,7 @@
break;
case NotificationType::EXTENSION_UNLOADED:
if (BackgroundApplicationListModel::IsBackgroundApp(
- *Details<Extension>(details).ptr())) {
+ *Details<UnloadedExtensionInfo>(details)->extension)) {
OnBackgroundAppUnloaded();
}
break;
@@ -377,4 +377,3 @@
return background_mode_enabled;
}
-

Powered by Google App Engine
This is Rietveld 408576698