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

Side by Side Diff: chrome/browser/download/all_download_item_notifier.h

Issue 11640007: Make the UI an observer of downloads. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Android clang build Created 7 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_DOWNLOAD_ALL_DOWNLOAD_ITEM_NOTIFIER_H_ 5 #ifndef CHROME_BROWSER_DOWNLOAD_ALL_DOWNLOAD_ITEM_NOTIFIER_H_
6 #define CHROME_BROWSER_DOWNLOAD_ALL_DOWNLOAD_ITEM_NOTIFIER_H_ 6 #define CHROME_BROWSER_DOWNLOAD_ALL_DOWNLOAD_ITEM_NOTIFIER_H_
7 7
8 #include <set> 8 #include <set>
9 9
10 #include "content/public/browser/download_manager.h" 10 #include "content/public/browser/download_manager.h"
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 virtual void OnDownloadOpened( 53 virtual void OnDownloadOpened(
54 content::DownloadManager* manager, content::DownloadItem* item) {} 54 content::DownloadManager* manager, content::DownloadItem* item) {}
55 virtual void OnDownloadRemoved( 55 virtual void OnDownloadRemoved(
56 content::DownloadManager* manager, content::DownloadItem* item) {} 56 content::DownloadManager* manager, content::DownloadItem* item) {}
57 57
58 private: 58 private:
59 DISALLOW_COPY_AND_ASSIGN(Observer); 59 DISALLOW_COPY_AND_ASSIGN(Observer);
60 }; 60 };
61 61
62 AllDownloadItemNotifier(content::DownloadManager* manager, 62 AllDownloadItemNotifier(content::DownloadManager* manager,
63 Observer* observer); 63 Observer* observer);
64 64
65 virtual ~AllDownloadItemNotifier(); 65 virtual ~AllDownloadItemNotifier();
66 66
67 // Returns NULL if the manager has gone down. 67 // Returns NULL if the manager has gone down.
68 content::DownloadManager* GetManager() const { return manager_; } 68 content::DownloadManager* GetManager() const { return manager_; }
69 69
70 private: 70 private:
71 // content::DownloadManager::Observer 71 // content::DownloadManager::Observer
72 virtual void ManagerGoingDown(content::DownloadManager* manager) OVERRIDE; 72 virtual void ManagerGoingDown(content::DownloadManager* manager) OVERRIDE;
73 virtual void OnDownloadCreated(content::DownloadManager* manager, 73 virtual void OnDownloadCreated(content::DownloadManager* manager,
74 content::DownloadItem* item) OVERRIDE; 74 content::DownloadItem* item) OVERRIDE;
75 75
76 // content::DownloadItem::Observer 76 // content::DownloadItem::Observer
77 virtual void OnDownloadUpdated(content::DownloadItem* item) OVERRIDE; 77 virtual void OnDownloadUpdated(content::DownloadItem* item) OVERRIDE;
78 virtual void OnDownloadOpened(content::DownloadItem* item) OVERRIDE; 78 virtual void OnDownloadOpened(content::DownloadItem* item) OVERRIDE;
79 virtual void OnDownloadRemoved(content::DownloadItem* item) OVERRIDE; 79 virtual void OnDownloadRemoved(content::DownloadItem* item) OVERRIDE;
80 virtual void OnDownloadDestroyed(content::DownloadItem* item) OVERRIDE; 80 virtual void OnDownloadDestroyed(content::DownloadItem* item) OVERRIDE;
81 81
82 content::DownloadManager* manager_; 82 content::DownloadManager* manager_;
83 AllDownloadItemNotifier::Observer* observer_; 83 AllDownloadItemNotifier::Observer* observer_;
84 std::set<content::DownloadItem*> observing_; 84 std::set<content::DownloadItem*> observing_;
85 85
86 DISALLOW_COPY_AND_ASSIGN(AllDownloadItemNotifier); 86 DISALLOW_COPY_AND_ASSIGN(AllDownloadItemNotifier);
87 }; 87 };
88 88
89 #endif // CHROME_BROWSER_DOWNLOAD_ALL_DOWNLOAD_ITEM_NOTIFIER_H_ 89 #endif // CHROME_BROWSER_DOWNLOAD_ALL_DOWNLOAD_ITEM_NOTIFIER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698