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

Unified Diff: chrome/browser/task_manager/task_manager_resource_providers.cc

Issue 10890023: Miscellaneous cleanups from several months ago I never got around to landing. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 4 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/task_manager/task_manager_resource_providers.cc
===================================================================
--- chrome/browser/task_manager/task_manager_resource_providers.cc (revision 153800)
+++ chrome/browser/task_manager/task_manager_resource_providers.cc (working copy)
@@ -421,17 +421,13 @@
updating_ = false;
// Then we unregister for notifications to get new tabs.
- registrar_.Remove(
- this, content::NOTIFICATION_WEB_CONTENTS_CONNECTED,
+ registrar_.Remove(this, content::NOTIFICATION_WEB_CONTENTS_CONNECTED,
content::NotificationService::AllBrowserContextsAndSources());
- registrar_.Remove(
- this, content::NOTIFICATION_WEB_CONTENTS_SWAPPED,
+ registrar_.Remove(this, content::NOTIFICATION_WEB_CONTENTS_SWAPPED,
content::NotificationService::AllBrowserContextsAndSources());
- registrar_.Remove(
- this, content::NOTIFICATION_WEB_CONTENTS_DISCONNECTED,
+ registrar_.Remove(this, content::NOTIFICATION_WEB_CONTENTS_DISCONNECTED,
content::NotificationService::AllBrowserContextsAndSources());
- registrar_.Remove(
- this, chrome::NOTIFICATION_INSTANT_COMMITTED,
+ registrar_.Remove(this, chrome::NOTIFICATION_INSTANT_COMMITTED,
content::NotificationService::AllBrowserContextsAndSources());
// Delete all the resources.

Powered by Google App Engine
This is Rietveld 408576698