| 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());
|
|
|