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

Unified Diff: ui/views/animation/bounds_animator_unittest.cc

Issue 14061025: ui: Use base::MessageLoop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/surface/accelerated_surface_win.cc ('k') | ui/views/controls/button/button_dropdown.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/animation/bounds_animator_unittest.cc
diff --git a/ui/views/animation/bounds_animator_unittest.cc b/ui/views/animation/bounds_animator_unittest.cc
index 7f802610ce8f06950281860eebef3c9e33fb2376..ed7dca590bfb5fc57006d559b83b619a9e0611ec 100644
--- a/ui/views/animation/bounds_animator_unittest.cc
+++ b/ui/views/animation/bounds_animator_unittest.cc
@@ -100,7 +100,7 @@ class BoundsAnimatorTest : public testing::Test {
TestBoundsAnimator* animator() { return &animator_; }
private:
- MessageLoopForUI message_loop_;
+ base::MessageLoopForUI message_loop_;
TestView parent_;
TestView* child_; // Owned by |parent_|.
TestBoundsAnimator animator_;
@@ -122,7 +122,7 @@ TEST_F(BoundsAnimatorTest, AnimateViewTo) {
// Run the message loop; the delegate exits the loop when the animation is
// done.
- MessageLoop::current()->Run();
+ base::MessageLoop::current()->Run();
// Make sure the bounds match of the view that was animated match.
EXPECT_EQ(target_bounds, child()->bounds());
« no previous file with comments | « ui/surface/accelerated_surface_win.cc ('k') | ui/views/controls/button/button_dropdown.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698