HomeSort by relevance Sort by last modified time
    Searched refs:Balloon (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/chromium_org/chrome/browser/notifications/
balloon.cc 5 #include "chrome/browser/notifications/balloon.h"
23 Balloon::Balloon(const Notification& notification, Profile* profile,
30 Balloon::~Balloon() {
33 void Balloon::SetPosition(const gfx::Point& upper_left, bool reposition) {
39 void Balloon::ResizeDueToAutoResize(const gfx::Size& size) {
43 void Balloon::set_view(BalloonView* balloon_view) {
47 void Balloon::Show() {
55 void Balloon::Update(const Notification& notification)
    [all...]
fake_balloon_view.h 10 #include "chrome/browser/notifications/balloon.h"
12 // Test version of a balloon view which doesn't do anything viewable, but does
16 explicit FakeBalloonView(Balloon* balloon);
21 virtual void Show(Balloon* balloon) OVERRIDE;
29 Balloon* balloon_;
balloon_collection_base.h 15 class Balloon;
27 typedef std::deque<Balloon*> Balloons;
29 // Adds a balloon to the collection. Takes ownership of pointer.
30 virtual void Add(Balloon* balloon, bool add_to_front);
32 // Removes a balloon from the collection (if present). Frees
34 virtual void Remove(Balloon* balloon);
36 // Returns true if any balloon matches the given notification id.
39 // Finds any balloon matching the given notification id, an
    [all...]
fake_balloon_view.cc 7 FakeBalloonView::FakeBalloonView(Balloon* balloon)
8 : balloon_(balloon) {
14 void FakeBalloonView::Show(Balloon* balloon) {
notification_options_menu_model.h 13 class Balloon;
19 explicit CornerSelectionMenuModel(Balloon* balloon);
32 Balloon* balloon_;
41 explicit NotificationOptionsMenuModel(Balloon* balloon);
57 Balloon* balloon_; // Not owned.
balloon.h 16 class Balloon;
22 // Interface for a view that displays a balloon.
28 virtual void Show(Balloon* balloon) = 0;
33 // Reposition the view to match the position of its balloon.
51 class Balloon {
53 Balloon(const Notification& notification,
56 virtual ~Balloon();
80 // Request a new content size for this balloon. This will get passed
81 // to the balloon collection for checking against available space an
    [all...]
balloon_collection.h 15 class Balloon;
53 // Adds a new balloon for the specified notification.
57 // Returns true if any balloon has this notification id.
77 // Request the resizing of a balloon.
78 virtual void ResizeBalloon(Balloon* balloon, const gfx::Size& size) = 0;
86 // Inform the collection that a balloon was closed.
87 virtual void OnBalloonClosed(Balloon* source) = 0;
90 typedef std::deque<Balloon*> Balloons;
108 // For use only with testing. This callback is invoked when a balloon
    [all...]
desktop_notifications_unittest.h 29 // Test version of the balloon collection which counts the number
45 virtual Balloon* MakeBalloon(const Notification& notification,
48 virtual void OnBalloonClosed(Balloon* source) OVERRIDE;
52 std::deque<Balloon*>& balloons() { return balloons_; }
58 // Returns the height bounds of a balloon.
68 std::deque<Balloon*> balloons_;
113 // Mock balloon collection -- owned by the NotificationUIManager
  /external/chromium/chrome/browser/notifications/
balloon.cc 5 #include "chrome/browser/notifications/balloon.h"
14 Balloon::Balloon(const Notification& notification, Profile* profile,
21 Balloon::~Balloon() {
24 void Balloon::SetPosition(const gfx::Point& upper_left, bool reposition) {
30 void Balloon::SetContentPreferredSize(const gfx::Size& size) {
34 void Balloon::set_view(BalloonView* balloon_view) {
38 void Balloon::Show() {
46 void Balloon::Update(const Notification& notification)
    [all...]
balloon_collection_base.h 16 class Balloon;
27 typedef std::deque<Balloon*> Balloons;
29 // Adds a balloon to the collection. Takes ownership of pointer.
30 virtual void Add(Balloon* balloon);
32 // Removes a balloon from the collection (if present). Frees
34 virtual void Remove(Balloon* balloon);
36 // Finds any balloon matching the given notification id, and
51 // Returns the balloon matching the given notification, o
    [all...]
balloon_collection.h 17 class Balloon;
55 // Adds a new balloon for the specified notification.
73 // Request the resizing of a balloon.
74 virtual void ResizeBalloon(Balloon* balloon, const gfx::Size& size) = 0;
82 // Inform the collection that a balloon was closed.
83 virtual void OnBalloonClosed(Balloon* source) = 0;
86 typedef std::deque<Balloon*> Balloons;
104 // For use only with testing. This callback is invoked when a balloon
notification_options_menu_model.h 9 #include "chrome/browser/notifications/balloon.h"
16 explicit CornerSelectionMenuModel(Balloon* balloon);
28 Balloon* balloon_;
37 explicit NotificationOptionsMenuModel(Balloon* balloon);
52 Balloon* balloon_; // Not owned.
balloon.h 17 class Balloon;
24 // Interface for a view that displays a balloon.
30 virtual void Show(Balloon* balloon) = 0;
35 // Reposition the view to match the position of its balloon.
49 class Balloon {
51 Balloon(const Notification& notification,
54 virtual ~Balloon();
78 // Request a new content size for this balloon. This will get passed
79 // to the balloon collection for checking against available space an
    [all...]
desktop_notifications_unittest.h 28 // Test version of the balloon collection which counts the number
44 virtual Balloon* MakeBalloon(const Notification& notification,
47 virtual void OnBalloonClosed(Balloon* source);
51 std::deque<Balloon*>& balloons() { return balloons_; }
57 // Returns the height bounds of a balloon.
67 std::deque<Balloon*> balloons_;
112 // Mock balloon collection -- owned by the NotificationUIManager
  /external/chromium/chrome/browser/chromeos/notifications/
balloon_collection_impl.h 28 // A balloon collection represents a set of notification balloons being
42 // Add, remove, resize and show the balloon.
43 virtual void Add(Balloon* balloon) = 0;
44 virtual bool Update(Balloon* balloon) = 0;
45 virtual void Remove(Balloon* balloon) = 0;
46 virtual void Show(Balloon* balloon) = 0
    [all...]
balloon_collection_impl.cc 12 #include "chrome/browser/notifications/balloon.h"
42 Balloon* new_balloon = MakeBalloon(notification, profile);
56 Balloon* balloon = FindBalloon(notification); local
57 if (!balloon) {
62 static_cast<BalloonViewHost*>(balloon->view()->GetHost());
72 Balloon* new_balloon = new Balloon(notification, profile, this);
86 Balloon* balloon = FindBalloon(notification) local
96 Balloon* balloon = FindBalloon(notification); local
    [all...]
notification_panel.h 18 class Balloon;
92 virtual void Add(Balloon* balloon);
93 virtual bool Update(Balloon* balloon);
94 virtual void Remove(Balloon* balloon);
95 virtual void Show(Balloon* balloon);
96 virtual void ResizeNotification(Balloon* balloon
    [all...]
desktop_notifications_unittest.h 15 #include "chrome/browser/notifications/balloon.h"
35 // Test version of the balloon collection which counts the number
44 virtual Balloon* MakeBalloon(const Notification& notification,
46 virtual void OnBalloonClosed(Balloon* source);
49 std::set<Balloon*>& balloons() { return balloons_; }
56 std::set<Balloon*> balloons_;
101 // Mock balloon collection -- owned by the NotificationUIManager
  /external/chromium_org/chrome/browser/ui/cocoa/notifications/
balloon_view_host_mac.h 16 explicit BalloonViewHost(Balloon* balloon);
20 // Changes the size of the balloon.
balloon_controller.h 13 class Balloon;
21 // The Balloon controller creates the view elements to display a
22 // notification balloon, resize it if the HTML contents of that
23 // balloon change, and move it when the collection of balloons is
27 // The balloon which represents the contents of this view. Weak pointer
29 Balloon* balloon_;
59 // Initialize with a balloon object containing the notification data.
60 - (id)initWithBalloon:(Balloon*)balloon;
71 // Closes the balloon. Can be called by the bridge or by the clos
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/notifications/
balloon_view_host_gtk.h 17 explicit BalloonViewHost(Balloon* balloon);
21 // Changes the size of the balloon.
  /external/chromium/chrome/browser/ui/cocoa/notifications/
balloon_controller.h 15 class Balloon;
23 // The Balloon controller creates the view elements to display a
24 // notification balloon, resize it if the HTML contents of that
25 // balloon change, and move it when the collection of balloons is
29 // The balloon which represents the contents of this view. Weak pointer
31 Balloon* balloon_;
61 // Initialize with a balloon object containing the notification data.
62 - (id)initWithBalloon:(Balloon*)balloon;
73 // Closes the balloon. Can be called by the bridge or by the clos
    [all...]
balloon_view_bridge.h 9 #include "chrome/browser/notifications/balloon.h"
25 virtual void Show(Balloon* balloon);
33 // Weak pointer to the balloon controller which manages the UI.
balloon_view_host_mac.h 20 explicit BalloonViewHost(Balloon* balloon);
24 // Changes the size of the balloon.
  /external/chromium/chrome/browser/ui/gtk/notifications/
balloon_view_host_gtk.h 20 explicit BalloonViewHost(Balloon* balloon);
26 // Changes the size of the balloon.

Completed in 1055 milliseconds

1 2 3