diff options
author | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-22 22:40:03 +0000 |
---|---|---|
committer | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-22 22:40:03 +0000 |
commit | fb5af2366bf2001c357ca0a0fffca800531eef46 (patch) | |
tree | 71e8568c312810fbc091336ff22068da09057912 /media/audio/linux/alsa_output_unittest.cc | |
parent | 06ff88b35ec9062666a08c53f74d1990d85c745b (diff) | |
download | chromium_src-fb5af2366bf2001c357ca0a0fffca800531eef46.zip chromium_src-fb5af2366bf2001c357ca0a0fffca800531eef46.tar.gz chromium_src-fb5af2366bf2001c357ca0a0fffca800531eef46.tar.bz2 |
Use base::MessageLoop in media code.
MessageLoop is moved to base namespace in r191566. This CL is the followup
cleanup in media code.
The following folders are replaced:
chrome/browser/media
content/browser/renderer_host/media
content/common/gpu/media
content/common/media
content/renderer/media
media
webkit/media
The following command is used to make sure all instances in these folders are updated:
grep -rin '[^a-zA-Z]MessageLoop[^a-zA-Z]' media chrome/browser/media content/browser/renderer_host/media content/common/gpu/media content/common/media content/renderer/media webkit/media | grep -v 'base::MessageLoop' | grep -v 'class MessageLoop'
Review URL: https://chromiumcodereview.appspot.com/14385002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@195626 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/audio/linux/alsa_output_unittest.cc')
-rw-r--r-- | media/audio/linux/alsa_output_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/media/audio/linux/alsa_output_unittest.cc b/media/audio/linux/alsa_output_unittest.cc index d5d6be9..0dc19f5 100644 --- a/media/audio/linux/alsa_output_unittest.cc +++ b/media/audio/linux/alsa_output_unittest.cc @@ -100,7 +100,7 @@ class MockAudioManagerLinux : public AudioManagerLinux { // We don't mock this method since all tests will do the same thing // and use the current message loop. virtual scoped_refptr<base::MessageLoopProxy> GetMessageLoop() OVERRIDE { - return MessageLoop::current()->message_loop_proxy(); + return base::MessageLoop::current()->message_loop_proxy(); } }; @@ -170,7 +170,7 @@ class AlsaPcmOutputStreamTest : public testing::Test { StrictMock<MockAlsaWrapper> mock_alsa_wrapper_; scoped_ptr<StrictMock<MockAudioManagerLinux> > mock_manager_; - MessageLoop message_loop_; + base::MessageLoop message_loop_; scoped_refptr<media::DataBuffer> packet_; private: |