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

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

Issue 10694056: CPM Extension Uninstall Watching (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Requested changes made Created 8 years, 5 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/app_notification_manager.cc
diff --git a/chrome/browser/extensions/app_notification_manager.cc b/chrome/browser/extensions/app_notification_manager.cc
index 6b1566af8879098a925e3a4ab6cbb7e52ec1c07c..e1fd6aa53d804d79d2c14839bea460f8ccc67bd5 100644
--- a/chrome/browser/extensions/app_notification_manager.cc
+++ b/chrome/browser/extensions/app_notification_manager.cc
@@ -175,7 +175,7 @@ void AppNotificationManager::Observe(
const content::NotificationSource& source,
const content::NotificationDetails& details) {
CHECK(type == chrome::NOTIFICATION_EXTENSION_UNINSTALLED);
- ClearAll(*content::Details<const std::string>(details).ptr());
+ ClearAll(content::Details<const extensions::Extension>(details).ptr()->id());
}
syncer::SyncDataList AppNotificationManager::GetAllSyncData(

Powered by Google App Engine
This is Rietveld 408576698