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

1 2

  /external/chromium/chrome/browser/chromeos/notifications/
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...]
balloon_view_host.h 26 explicit BalloonViewHost(Balloon* balloon) : ::BalloonViewHost(balloon) {}
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...]
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.cc 20 virtual void Add(Balloon* balloon) {}
21 virtual bool Update(Balloon* balloon) { return false; }
22 virtual void Remove(Balloon* balloon) {}
23 virtual void Show(Balloon* balloon) {}
24 virtual void ResizeNotification(Balloon* balloon,
50 Balloon* balloon = BalloonCollectionImpl::MakeBalloon(notification, profile); local
265 Balloon* balloon = (*balloon_collection_->balloons().begin()); local
    [all...]
notification_panel.cc 29 // Minimum and maximum size of balloon content.
65 chromeos::BalloonViewImpl* GetBalloonViewOf(const Balloon* balloon) {
66 return static_cast<chromeos::BalloonViewImpl*>(balloon->view());
285 void Add(Balloon* balloon) {
286 BalloonViewImpl* view = GetBalloonViewOf(balloon);
287 GetContainerFor(balloon)->AddChildView(view);
290 // Updates the position of the |balloon|.
291 bool Update(Balloon* balloon)
838 Balloon* balloon = collection->FindBalloon(notification); local
    [all...]
balloon_view.h 14 #include "chrome/browser/notifications/balloon.h"
40 // A balloon view is the UI component for a notification panel.
53 virtual void Show(Balloon* balloon);
72 // True if the balloon is for the given |notification|.
106 // Non-owned pointer to the balloon which owns this object.
107 Balloon* balloon_;
  /external/chromium/chrome/browser/ui/gtk/notifications/
balloon_view_host_gtk.cc 7 #include "chrome/browser/notifications/balloon.h"
12 BalloonViewHost::BalloonViewHost(Balloon* balloon)
13 : BalloonHost(balloon),
balloon_view_host_gtk.h 20 explicit BalloonViewHost(Balloon* balloon);
26 // Changes the size of the balloon.
balloon_view_gtk.h 13 #include "chrome/browser/notifications/balloon.h"
36 // A balloon view is the UI component for desktop notification toasts.
47 virtual void Show(Balloon* balloon);
66 // Do the delayed close work. The balloon and all view components will be
71 // The height of the balloon's shelf.
75 // The width and height that the frame should be. If the balloon inside
81 // Where the balloon contents should be placed with respect to the top left
85 // Where the balloon contents should be in screen coordinates.
96 // Non-owned pointer to the balloon which owns this object
    [all...]
  /external/chromium/chrome/browser/notifications/
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_linux.cc 7 #include "chrome/browser/notifications/balloon.h"
16 Balloon* BalloonCollectionImpl::MakeBalloon(const Notification& notification,
18 Balloon* balloon = new Balloon(notification, profile, this); local
20 balloon->set_view(new BalloonViewImpl(this));
22 balloon->set_content_size(size);
23 return balloon;
balloon_collection_win.cc 7 #include "chrome/browser/notifications/balloon.h"
11 Balloon* BalloonCollectionImpl::MakeBalloon(const Notification& notification,
13 Balloon* balloon = new Balloon(notification, profile, this); local
14 balloon->set_view(new BalloonViewImpl(this));
16 balloon->set_content_size(size);
17 return balloon;
balloon_collection_base.cc 8 #include "chrome/browser/notifications/balloon.h"
19 void BalloonCollectionBase::Add(Balloon* balloon) {
20 balloons_.push_back(balloon);
23 void BalloonCollectionBase::Remove(Balloon* balloon) {
25 scoped_ptr<Balloon> to_delete(balloon);
28 if ((*iter) == balloon) {
75 Balloon* BalloonCollectionBase::FindBalloon
    [all...]
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.
notification_test_util.h 12 #include "chrome/browser/notifications/balloon.h"
73 // Test version of a balloon view which doesn't do anything
78 explicit MockBalloonView(Balloon * balloon) :
79 balloon_(balloon) {}
82 virtual void Show(Balloon* balloon) {}
91 Balloon* balloon_;
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.cc 41 CornerSelectionMenuModel::CornerSelectionMenuModel(Balloon* balloon)
43 balloon_(balloon) {
112 NotificationOptionsMenuModel::NotificationOptionsMenuModel(Balloon* balloon)
114 balloon_(balloon) {
115 const Notification& notification = balloon->notification();
140 corner_menu_model_.reset(new CornerSelectionMenuModel(balloon));
  /external/chromium/chrome/browser/ui/cocoa/notifications/
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.
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...]
  /external/chromium/chrome/browser/ui/views/notifications/
balloon_view_host.h 18 explicit BalloonViewHost(Balloon* balloon);
balloon_view_host.cc 7 #include "chrome/browser/notifications/balloon.h"
52 BalloonViewHost::BalloonViewHost(Balloon* balloon)
53 : BalloonHost(balloon) {
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
SoftKey.java 95 boolean balloon) {
105 if (balloon) {
SoftKeyboardView.java 48 * The popup balloon hint for key press/release.
53 * The on-key balloon hint for key press/release. If it is null, on-key
98 * If this parameter is true, the balloon will never be dismissed even if
174 private void showBalloon(BalloonHint balloon, int balloonLocationToSkb[],
178 if (balloon.needForceDismiss()) {
179 balloon.delayedDismiss(0);
181 if (!balloon.isShowing()) {
182 balloon.delayedShow(delay, balloonLocationToSkb);
184 balloon.delayedUpdate(delay, balloonLocationToSkb, balloon
    [all...]

Completed in 106 milliseconds

1 2