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

Unified Diff: chrome/browser/download/notification/download_notification_manager.cc

Issue 852043002: Initial Implementation of Download Notification (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed build & test errors on non-ChromeOS platform. Created 5 years, 10 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/download/notification/download_notification_manager.cc
diff --git a/chrome/browser/download/notification/download_notification_manager.cc b/chrome/browser/download/notification/download_notification_manager.cc
new file mode 100644
index 0000000000000000000000000000000000000000..07275303970136a7342442437e0f5fc2b9b89a39
--- /dev/null
+++ b/chrome/browser/download/notification/download_notification_manager.cc
@@ -0,0 +1,48 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/download/notification/download_notification_manager.h"
+
+#include "base/strings/string_number_conversions.h"
+#include "chrome/browser/download/download_item_model.h"
+#include "chrome/browser/download/notification/download_notification_item.h"
+#include "chrome/grit/chromium_strings.h"
+#include "content/public/browser/download_item.h"
+#include "grit/theme_resources.h"
+#include "ui/base/l10n/l10n_util.h"
+#include "ui/base/resource/resource_bundle.h"
+#include "ui/message_center/message_center.h"
+#include "ui/message_center/notification.h"
+#include "ui/message_center/notification_delegate.h"
+
+using message_center::Notification;
+
+DownloadNotificationManager::DownloadNotificationManager(Profile* profile)
+ : items_deleter_(&items_) {
+}
+
+DownloadNotificationManager::~DownloadNotificationManager() {
+}
+
+void DownloadNotificationManager::OnDownloadStarted(
+ DownloadNotificationItem* item) {
+ downloading_items_.insert(item);
+}
+
+void DownloadNotificationManager::OnDownloadStopped(
+ DownloadNotificationItem* item) {
+ downloading_items_.erase(item);
+}
+
+void DownloadNotificationManager::OnDownloadRemoved(
+ DownloadNotificationItem* item) {
+ downloading_items_.erase(item);
+ items_.erase(item);
+}
+
+void DownloadNotificationManager::OnNewDownloadReady(
+ content::DownloadItem* download) {
+ DownloadNotificationItem* item = new DownloadNotificationItem(download, this);
+ items_.insert(item);
+}

Powered by Google App Engine
This is Rietveld 408576698