Searched defs:balloons (Results 1 - 11 of 11) sorted by relevance

/external/chromium/chrome/browser/notifications/
H A Dballoon_collection_base.h5 // Handles the visible notification (or 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.
H A Ddesktop_notifications_unittest.h36 // of balloons.
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.
H A Dballoon_collection_impl.cc18 // 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()) {
152 return base_.balloons();
156 const Balloons& balloons local
174 const Balloons& balloons = base_.balloons(); local
206 const Balloons& balloons = base_.balloons(); local
[all...]
H A Ddesktop_notifications_unittest.cc149 // 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
386 std::deque<Balloon*>& balloons = balloon_collection_->balloons(); local
[all...]
H A Dnotification_ui_manager.cc70 BalloonCollection* balloons = BalloonCollection::Create(); local
72 instance->Initialize(balloons);
73 balloons->set_space_change_listener(instance);
199 BalloonCollection::Balloons balloons = local
201 for (balloon_iter = balloons.begin();
202 balloon_iter != balloons.end();
/external/chromium/chrome/browser/chromeos/notifications/
H A Ddesktop_notifications_unittest.h48 // Number of balloons being shown.
49 std::set<Balloon*>& balloons() { return balloons_; } function in class:chromeos::MockBalloonCollection
52 // Returns the highest y-coordinate of all the balloons in the collection.
H A Ddesktop_notifications_unittest.cc144 // Close all the open balloons.
145 std::set<Balloon*> balloons = balloon_collection_->balloons(); local
147 for (iter = balloons.begin(); iter != balloons.end(); ++iter) {
265 Balloon* balloon = (*balloon_collection_->balloons().begin());
/external/chromium/chrome/browser/extensions/
H A Dextension_crash_recovery_browsertest.cc37 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/task_manager/
H A Dtask_manager_resource_providers.cc1402 const BalloonCollection::Balloons& balloons = collection->GetActiveBalloons(); local
1403 for (BalloonCollection::Balloons::const_iterator it = balloons.begin();
1404 it != balloons.end(); ++it) {
/external/chromium/chrome/browser/automation/
H A Dautomation_provider_observers.cc2101 const BalloonCollection::Balloons& balloons = local
2104 for (iter = balloons.begin(); iter != balloons.end(); ++iter) {
2138 const BalloonCollection::Balloons& balloons = local
2144 for (iter = balloons.begin(); iter != balloons.end(); ++iter) {
H A Dtesting_automation_provider.cc4467 const BalloonCollection::Balloons& balloons = collection->GetActiveBalloons(); local
4468 int balloon_count = static_cast<int>(balloons.size());
4477 manager->CancelById(balloons[index]->notification().notification_id());
4495 const BalloonCollection::Balloons& balloons = collection->GetActiveBalloons(); local
4496 if (static_cast<int>(balloons.size()) == count) {

Completed in 554 milliseconds