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

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

Issue 10694056: CPM Extension Uninstall Watching (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 6 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/state_store.cc
diff --git a/chrome/browser/extensions/state_store.cc b/chrome/browser/extensions/state_store.cc
index d9958272132371f1a3c10eb4e0c3a0bffd447d67..6530cd1e965291eef4c1a1d08f5a46985e3bc6fe 100644
--- a/chrome/browser/extensions/state_store.cc
+++ b/chrome/browser/extensions/state_store.cc
@@ -67,7 +67,7 @@ void StateStore::Observe(int type,
break;
case chrome::NOTIFICATION_EXTENSION_UNINSTALLED:
Yoyo Zhou 2012/07/09 17:06:37 Should collapse this with the previous case.
Devlin 2012/07/09 20:48:26 Done.
extension_id =
- *content::Details<const std::string>(details).ptr();
+ content::Details<const Extension>(details).ptr()->id();
break;
default:
NOTREACHED();

Powered by Google App Engine
This is Rietveld 408576698