HomeSort by relevance Sort by last modified time
    Searched refs:Balloons (Results 1 - 13 of 13) sorted by null

  /external/chromium/chrome/browser/notifications/
balloon_collection_base.h 5 // Handles the visible notification (or balloons).
27 typedef std::deque<Balloon*> Balloons;
41 // Finds all balloons matching the given notification source,
46 // Calls CloseByScript on all balloons.
49 const Balloons& balloons() const { return balloons_; } function in class:BalloonCollectionBase
55 // The number of balloons being displayed.
59 // Queue of active balloons. Pointers are owned by this class.
60 Balloons balloons_;
balloon_collection_base.cc 26 Balloons::iterator iter;
36 // Use a local list of balloons to close to avoid breaking
38 Balloons to_close;
39 Balloons::iterator iter;
52 // Use a local list of balloons to close to avoid breaking
54 Balloons to_close;
55 Balloons::iterator iter;
67 // Use a local list of balloons to close to avoid breaking
69 Balloons to_close = balloons_;
70 for (Balloons::iterator iter = to_close.begin()
    [all...]
balloon_collection.h 5 // Handles the visible notification (or balloons).
32 // Called when there is more or less space for balloons due to
33 // monitor size changes or balloons disappearing.
59 // Removes any balloons that have this notification id. Returns
63 // Removes any balloons that have this source origin. Returns
67 // Removes all balloons.
85 // Get const collection of the active balloons.
86 typedef std::deque<Balloon*> Balloons;
87 virtual const Balloons& GetActiveBalloons() = 0;
balloon_collection_impl.cc 18 // Portion of the screen allotted for notifications. When notification balloons
22 // Allow at least this number of balloons on the screen.
57 new_balloon->set_offset(base_.balloons()[count - 1]->offset());
111 const Balloons& balloons = base_.balloons(); local
112 Balloons::const_iterator it = balloons.begin();
118 while (it != balloons.end()) {
121 if (it != balloons.end())
156 const Balloons& balloons = base_.balloons(); local
174 const Balloons& balloons = base_.balloons(); local
206 const Balloons& balloons = base_.balloons(); local
    [all...]
desktop_notifications_unittest.h 36 // of balloons.
48 virtual const BalloonCollection::Balloons& GetActiveBalloons();
50 // Number of balloons being shown.
51 std::deque<Balloon*>& balloons() { return balloons_; } function in class:MockBalloonCollection
54 // Returns the highest y-coordinate of all the balloons in the collection.
balloon_collection_impl.h 5 // Handles the visible notification (or balloons).
20 // Mac balloons grow from the top down and have close buttons on top, so
29 // A balloon collection represents a set of notification balloons being
31 // a layout, and monitors for balloons being closed, which it reports
53 virtual const Balloons& GetActiveBalloons();
66 // Calculates layout values for the balloons including
100 // balloons are laid out.
109 // Returns the origin for the sequence of balloons depending on layout.
150 // Gets a bounding box for all the current balloons in screen coordinates.
154 // Adjusts the positions of the balloons (e.g., when one is closed)
    [all...]
notification_ui_manager.cc 70 BalloonCollection* balloons = BalloonCollection::Create(); local
72 instance->Initialize(balloons);
73 balloons->set_space_change_listener(instance);
198 BalloonCollection::Balloons::iterator balloon_iter;
199 BalloonCollection::Balloons balloons = local
201 for (balloon_iter = balloons.begin();
202 balloon_iter != balloons.end();
desktop_notifications_unittest.cc 62 const BalloonCollection::Balloons& MockBalloonCollection::GetActiveBalloons() {
149 // Close all the open balloons.
234 std::deque<Balloon*>& balloons = balloon_collection_->balloons(); local
236 for (iter = balloons.begin(); iter != balloons.end(); ++iter) {
331 Balloon* balloon = (*balloon_collection_->balloons().begin());
357 std::deque<Balloon*>& balloons = balloon_collection_->balloons(); local
359 for (iter = balloons.begin(); iter != balloons.end(); ++iter)
386 std::deque<Balloon*>& balloons = balloon_collection_->balloons(); local
    [all...]
  /external/chromium/chrome/browser/chromeos/notifications/
balloon_collection_impl.h 28 // A balloon collection represents a set of notification balloons being
31 // this class does not manage the location of balloons.
35 // An interface to display balloons on the screen.
72 virtual const Balloons& GetActiveBalloons() { return base_.balloons(); }
122 // Base implementation for the collection of active balloons.
  /external/chromium/chrome/browser/extensions/
extension_crash_recovery_browsertest.cc 37 BalloonCollection::Balloons balloons = local
39 return balloons.at(index);
59 BalloonCollection::Balloons balloons = local
61 return balloons.size();
421 SCOPED_TRACE("balloons done");
  /external/chromium/chrome/browser/automation/
automation_provider_observers.cc 2101 const BalloonCollection::Balloons& balloons = local
2138 const BalloonCollection::Balloons& balloons = local
    [all...]
testing_automation_provider.cc 4467 const BalloonCollection::Balloons& balloons = collection->GetActiveBalloons(); local
4495 const BalloonCollection::Balloons& balloons = collection->GetActiveBalloons(); local
    [all...]
  /external/chromium/chrome/browser/task_manager/
task_manager_resource_providers.cc 1402 const BalloonCollection::Balloons& balloons = collection->GetActiveBalloons(); local
    [all...]

Completed in 331 milliseconds