HomeSort by relevance Sort by last modified time
    Searched defs:balloon (Results 1 - 10 of 10) sorted by null

  /external/chromium/chrome/browser/notifications/
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;
desktop_notifications_unittest.cc 28 // balloon collection.
42 Balloon* MockBalloonCollection::MakeBalloon(const Notification& notification,
44 // Start with a normal balloon but mock out the view.
45 Balloon* balloon = BalloonCollectionImpl::MakeBalloon(notification, profile); local
46 balloon->set_view(new MockBalloonView(balloon));
47 balloons_.push_back(balloon);
48 return balloon;
51 void MockBalloonCollection::OnBalloonClosed(Balloon* source)
331 Balloon* balloon = (*balloon_collection_->balloons().begin()); local
    [all...]
  /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...]
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...]
  /external/chromium/chrome/browser/extensions/
extension_crash_recovery_browsertest.cc 34 Balloon* GetNotificationDelegate(size_t index) {
43 Balloon* balloon = GetNotificationDelegate(index); local
44 ASSERT_TRUE(balloon);
45 balloon->OnClick();
50 Balloon* balloon = GetNotificationDelegate(index); local
53 manager->CancelById(balloon->notification().notification_id());
133 SCOPED_TRACE("after clicking the balloon");
173 // The balloon should automatically hide after the extension is successfull
    [all...]
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
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...]
XmlKeyboardLoader.java 75 * Attribute tag of the balloon background image for key press. Defined
81 * Attribute tag of the popup balloon background image for key press or
100 * Attribute tag of the color to draw key's label in the popup balloon.
219 /** Attribute tag of the key's behavior for balloon. */
220 private static final String XMLATTR_KEY_BALLOON = "balloon";
301 boolean balloon; field in class:XmlKeyboardLoader.KeyCommonAttributes
305 balloon = true;
314 balloon = getBoolean(mXrp, XMLATTR_KEY_BALLOON, defAttr.balloon);
550 attrKeys.repeat, attrKeys.balloon);
    [all...]
  /external/chromium/chrome/browser/automation/
automation_provider_observers.cc 36 #include "chrome/browser/notifications/balloon.h"
2146 DictionaryValue* balloon = new DictionaryValue; local
    [all...]

Completed in 181 milliseconds