OLD | NEW |
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 // Handles the visible notification (or balloons). | 5 // Handles the visible notification (or balloons). |
6 | 6 |
7 #ifndef CHROME_BROWSER_NOTIFICATIONS_BALLOON_COLLECTION_IMPL_H_ | 7 #ifndef CHROME_BROWSER_NOTIFICATIONS_BALLOON_COLLECTION_IMPL_H_ |
8 #define CHROME_BROWSER_NOTIFICATIONS_BALLOON_COLLECTION_IMPL_H_ | 8 #define CHROME_BROWSER_NOTIFICATIONS_BALLOON_COLLECTION_IMPL_H_ |
9 | 9 |
10 #include <deque> | 10 #include <deque> |
(...skipping 28 matching lines...) Expand all Loading... |
39 , public base::MessageLoopForUI::Observer | 39 , public base::MessageLoopForUI::Observer |
40 #endif | 40 #endif |
41 { | 41 { |
42 public: | 42 public: |
43 BalloonCollectionImpl(); | 43 BalloonCollectionImpl(); |
44 virtual ~BalloonCollectionImpl(); | 44 virtual ~BalloonCollectionImpl(); |
45 | 45 |
46 // BalloonCollection interface. | 46 // BalloonCollection interface. |
47 virtual void Add(const Notification& notification, | 47 virtual void Add(const Notification& notification, |
48 Profile* profile) OVERRIDE; | 48 Profile* profile) OVERRIDE; |
49 virtual bool DoesIdExist(const std::string& id) OVERRIDE; | 49 virtual bool DoesIdExist(const std::string& id, |
| 50 Notification* matched_notification) OVERRIDE; |
50 virtual bool RemoveById(const std::string& id) OVERRIDE; | 51 virtual bool RemoveById(const std::string& id) OVERRIDE; |
51 virtual bool RemoveBySourceOrigin(const GURL& source_origin) OVERRIDE; | 52 virtual bool RemoveBySourceOrigin(const GURL& source_origin) OVERRIDE; |
52 virtual bool RemoveByProfile(Profile* profile) OVERRIDE; | 53 virtual bool RemoveByProfile(Profile* profile) OVERRIDE; |
53 virtual void RemoveAll() OVERRIDE; | 54 virtual void RemoveAll() OVERRIDE; |
54 virtual bool HasSpace() const OVERRIDE; | 55 virtual bool HasSpace() const OVERRIDE; |
55 virtual void ResizeBalloon(Balloon* balloon, const gfx::Size& size) OVERRIDE; | 56 virtual void ResizeBalloon(Balloon* balloon, const gfx::Size& size) OVERRIDE; |
56 virtual void SetPositionPreference(PositionPreference position) OVERRIDE; | 57 virtual void SetPositionPreference(PositionPreference position) OVERRIDE; |
57 virtual void DisplayChanged() OVERRIDE; | 58 virtual void DisplayChanged() OVERRIDE; |
58 virtual void OnBalloonClosed(Balloon* source) OVERRIDE; | 59 virtual void OnBalloonClosed(Balloon* source) OVERRIDE; |
59 virtual const Balloons& GetActiveBalloons() OVERRIDE; | 60 virtual const Balloons& GetActiveBalloons() OVERRIDE; |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 base::WeakPtrFactory<BalloonCollectionImpl> reposition_factory_; | 240 base::WeakPtrFactory<BalloonCollectionImpl> reposition_factory_; |
240 | 241 |
241 // Is the balloon collection currently listening for UI events? | 242 // Is the balloon collection currently listening for UI events? |
242 bool added_as_message_loop_observer_; | 243 bool added_as_message_loop_observer_; |
243 #endif | 244 #endif |
244 | 245 |
245 DISALLOW_COPY_AND_ASSIGN(BalloonCollectionImpl); | 246 DISALLOW_COPY_AND_ASSIGN(BalloonCollectionImpl); |
246 }; | 247 }; |
247 | 248 |
248 #endif // CHROME_BROWSER_NOTIFICATIONS_BALLOON_COLLECTION_IMPL_H_ | 249 #endif // CHROME_BROWSER_NOTIFICATIONS_BALLOON_COLLECTION_IMPL_H_ |
OLD | NEW |