Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(451)

Side by Side Diff: ash/test/shelf_view_test_api.cc

Issue 1396083003: Don't use base::MessageLoop::{Quit,QuitClosure} in ash/, chromeos/, device/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ash/shell/shell_delegate_impl.cc ('k') | ash/test/test_system_tray_delegate.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ash/test/shelf_view_test_api.h" 5 #include "ash/test/shelf_view_test_api.h"
6 6
7 #include "ash/shelf/overflow_button.h" 7 #include "ash/shelf/overflow_button.h"
8 #include "ash/shelf/shelf_button.h" 8 #include "ash/shelf/shelf_button.h"
9 #include "ash/shelf/shelf_constants.h" 9 #include "ash/shelf/shelf_constants.h"
10 #include "ash/shelf/shelf_model.h" 10 #include "ash/shelf/shelf_model.h"
11 #include "ash/shelf/shelf_view.h" 11 #include "ash/shelf/shelf_view.h"
12 #include "base/message_loop/message_loop.h" 12 #include "base/message_loop/message_loop.h"
13 #include "ui/views/animation/bounds_animator.h" 13 #include "ui/views/animation/bounds_animator.h"
14 #include "ui/views/view_model.h" 14 #include "ui/views/view_model.h"
15 15
16 namespace { 16 namespace {
17 17
18 // A class used to wait for animations. 18 // A class used to wait for animations.
19 class TestAPIAnimationObserver : public views::BoundsAnimatorObserver { 19 class TestAPIAnimationObserver : public views::BoundsAnimatorObserver {
20 public: 20 public:
21 TestAPIAnimationObserver() {} 21 TestAPIAnimationObserver() {}
22 ~TestAPIAnimationObserver() override {} 22 ~TestAPIAnimationObserver() override {}
23 23
24 // views::BoundsAnimatorObserver overrides: 24 // views::BoundsAnimatorObserver overrides:
25 void OnBoundsAnimatorProgressed(views::BoundsAnimator* animator) override {} 25 void OnBoundsAnimatorProgressed(views::BoundsAnimator* animator) override {}
26 void OnBoundsAnimatorDone(views::BoundsAnimator* animator) override { 26 void OnBoundsAnimatorDone(views::BoundsAnimator* animator) override {
27 base::MessageLoop::current()->Quit(); 27 base::MessageLoop::current()->QuitWhenIdle();
28 } 28 }
29 29
30 private: 30 private:
31 DISALLOW_COPY_AND_ASSIGN(TestAPIAnimationObserver); 31 DISALLOW_COPY_AND_ASSIGN(TestAPIAnimationObserver);
32 }; 32 };
33 33
34 } // namespace 34 } // namespace
35 35
36 namespace ash { 36 namespace ash {
37 namespace test { 37 namespace test {
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 return shelf_view_->dragged_off_from_overflow_to_shelf_; 139 return shelf_view_->dragged_off_from_overflow_to_shelf_;
140 } 140 }
141 141
142 ShelfButtonPressedMetricTracker* 142 ShelfButtonPressedMetricTracker*
143 ShelfViewTestAPI::shelf_button_pressed_metric_tracker() { 143 ShelfViewTestAPI::shelf_button_pressed_metric_tracker() {
144 return &(shelf_view_->shelf_button_pressed_metric_tracker_); 144 return &(shelf_view_->shelf_button_pressed_metric_tracker_);
145 } 145 }
146 146
147 } // namespace test 147 } // namespace test
148 } // namespace ash 148 } // namespace ash
OLDNEW
« no previous file with comments | « ash/shell/shell_delegate_impl.cc ('k') | ash/test/test_system_tray_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698