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

  /external/chromium/chrome/browser/notifications/
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...]
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_;
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...]
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.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.
  /external/chromium_org/chrome/browser/notifications/
balloon_collection_impl.cc 26 // Portion of the screen allotted for notifications. When notification balloons
30 // Allow at least this number of balloons on the screen.
76 new_balloon->set_offset(base_.balloons()[count - 1]->offset());
145 const Balloons& balloons = base_.balloons(); local
147 Balloons::const_iterator it = balloons.begin();
151 while (it != balloons.end()) {
154 if (it != balloons.end())
207 const Balloons& balloons = base_.balloons(); local
225 const Balloons& balloons = base_.balloons(); local
257 const Balloons& balloons = base_.balloons(); local
    [all...]
balloon_notification_ui_manager.cc 71 const BalloonCollection::Balloons& balloons = local
73 for (BalloonCollection::Balloons::const_iterator iter = balloons.begin();
74 iter != balloons.end(); ++iter) {
130 const BalloonCollection::Balloons& balloons = local
132 for (BalloonCollection::Balloons::const_iterator iter = balloons.begin();
133 iter != balloons.end(); ++iter)
    [all...]
balloon_collection_base.h 5 // Handles the visible notification (or balloons).
27 typedef std::deque<Balloon*> Balloons;
44 // Finds all balloons matching the given notification source,
49 // Finds all balloons matching the given profile and calls CloseByScript
53 // Calls CloseByScript on all balloons.
56 const Balloons& balloons() const { return balloons_; } function in class:BalloonCollectionBase
66 // The number of balloons being displayed.
70 // Queue of active balloons. Pointers are owned by this class.
71 Balloons balloons_
    [all...]
desktop_notifications_unittest.cc 80 const BalloonCollection::Balloons& MockBalloonCollection::GetActiveBalloons() {
188 // Close all the open balloons.
275 std::deque<Balloon*>& balloons = balloon_collection_->balloons(); local
277 for (iter = balloons.begin(); iter != balloons.end(); ++iter) {
455 Balloon* balloon = (*balloon_collection_->balloons().begin());
482 std::deque<Balloon*>& balloons = balloon_collection_->balloons(); local
484 for (iter = balloons.begin(); iter != balloons.end(); ++iter)
512 std::deque<Balloon*>& balloons = balloon_collection_->balloons(); local
    [all...]
desktop_notifications_unittest.h 36 // of balloons.
48 virtual const BalloonCollection::Balloons& GetActiveBalloons() OVERRIDE;
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.
notification_browsertest.cc 535 const std::deque<Balloon*>& balloons = GetActiveBalloons(); local
536 ASSERT_EQ(1U, balloons.size());
537 Balloon* balloon = balloons[0];
563 const std::deque<Balloon*>& balloons = GetActiveBalloons(); local
564 EXPECT_TRUE(CloseNotificationAndWait(balloons[0]->notification()));
745 const std::deque<Balloon*>& balloons = GetActiveBalloons(); local
746 ASSERT_TRUE(CloseNotificationAndWait(balloons[0]->notification()));
828 const std::deque<Balloon*>& balloons = GetActiveBalloons(); local
829 ASSERT_EQ(1U, balloons.size());
830 CrashNotification(balloons[0])
942 const std::deque<Balloon*>& balloons = GetActiveBalloons(); local
    [all...]
  /external/chromium/chrome/browser/chromeos/notifications/
desktop_notifications_unittest.cc 144 // 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());
desktop_notifications_unittest.h 48 // 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.
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_org/chrome/browser/task_manager/
notification_resource_provider.cc 143 // MessageCenter does not use Balloons.
155 const BalloonCollection::Balloons& balloons = local
157 for (BalloonCollection::Balloons::const_iterator it = balloons.begin();
158 it != balloons.end(); ++it) {
171 // MessageCenter does not use Balloons.
  /development/samples/ApiDemos/src/com/example/android/apis/content/
ExternalStorage.java 198 InputStream is = getResources().openRawResource(R.drawable.balloons);
262 InputStream is = getResources().openRawResource(R.drawable.balloons);
324 InputStream is = getResources().openRawResource(R.drawable.balloons);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ColorMatrixSample.java 43 R.drawable.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_org/chrome/browser/extensions/
extension_crash_recovery_browsertest.cc 170 BalloonCollection::Balloons balloons = local
172 return index < balloons.size() ? balloons.at(index) : NULL;
452 SCOPED_TRACE("balloons done");
476 // One of the balloons should hide after the extension is reloaded.
  /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_org/chrome/browser/automation/
automation_provider_observers.cc 1985 const BalloonCollection::Balloons& balloons = local
2038 const BalloonCollection::Balloons& balloons = local
    [all...]
testing_automation_provider.cc     [all...]
  /external/chromium/chrome/browser/task_manager/
task_manager_resource_providers.cc 1402 const BalloonCollection::Balloons& balloons = collection->GetActiveBalloons(); local
    [all...]
  /external/chromium/chrome/browser/resources/touch_ntp/standalone/
standalone_hack.js 49 description: 'The prickly puzzle game where popping balloons has ' +

Completed in 542 milliseconds