summaryrefslogtreecommitdiffstats
path: root/ui/views/animation
diff options
context:
space:
mode:
authorxhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-29 19:01:48 +0000
committerxhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-29 19:01:48 +0000
commit7060d65997d7b88b05137c70b1b509fbcafb0850 (patch)
treeb143e18a947e2b82990a077d8d5384ebf969f468 /ui/views/animation
parentd10f82f6c62676297f2bb8f5908684f8ccdbaab8 (diff)
downloadchromium_src-7060d65997d7b88b05137c70b1b509fbcafb0850.zip
chromium_src-7060d65997d7b88b05137c70b1b509fbcafb0850.tar.gz
chromium_src-7060d65997d7b88b05137c70b1b509fbcafb0850.tar.bz2
ui: Use base::MessageLoop.
BUG=236029 R=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/14061025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197100 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/views/animation')
-rw-r--r--ui/views/animation/bounds_animator_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/views/animation/bounds_animator_unittest.cc b/ui/views/animation/bounds_animator_unittest.cc
index 7f80261..ed7dca5 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());