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

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

Issue 231723006: Remove balloon notification code. The last user was the Linux GTK port but that's deleted now. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: sync after elliot's r263101 Created 6 years, 8 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.cc
===================================================================
--- chrome/browser/task_manager/task_manager.cc (revision 263121)
+++ chrome/browser/task_manager/task_manager.cc (working copy)
@@ -47,10 +47,6 @@
#include "ui/base/text/bytes_formatting.h"
#include "ui/gfx/image/image_skia.h"
-#if defined(TOOLKIT_GTK)
-#include "chrome/browser/task_manager/notification_resource_provider.h"
-#endif
-
#if defined(OS_MACOSX)
#include "content/public/browser/browser_child_process_host.h"
#endif
@@ -276,13 +272,6 @@
scoped_ptr<WebContentsInformation>(
new task_manager::GuestInformation())));
-#if defined(TOOLKIT_GTK) && defined(ENABLE_NOTIFICATIONS)
- ResourceProvider* provider =
- task_manager::NotificationResourceProvider::Create(task_manager);
- if (provider)
- AddResourceProvider(provider);
-#endif
-
AddResourceProvider(new task_manager::WorkerResourceProvider(task_manager));
}

Powered by Google App Engine
This is Rietveld 408576698