| OLD | NEW |
| 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 "base/bind.h" | 5 #include "base/bind.h" |
| 6 #include "base/bind_helpers.h" | 6 #include "base/bind_helpers.h" |
| 7 #include "base/message_loop.h" | 7 #include "base/message_loop.h" |
| 8 #include "base/message_loop_proxy.h" | 8 #include "base/message_loop/message_loop_proxy.h" |
| 9 #include "base/synchronization/waitable_event.h" | 9 #include "base/synchronization/waitable_event.h" |
| 10 #include "base/threading/thread.h" | 10 #include "base/threading/thread.h" |
| 11 #include "media/audio/audio_manager.h" | 11 #include "media/audio/audio_manager.h" |
| 12 #include "media/audio/simple_sources.h" | 12 #include "media/audio/simple_sources.h" |
| 13 #include "media/audio/virtual_audio_input_stream.h" | 13 #include "media/audio/virtual_audio_input_stream.h" |
| 14 #include "media/audio/virtual_audio_output_stream.h" | 14 #include "media/audio/virtual_audio_output_stream.h" |
| 15 #include "testing/gmock/include/gmock/gmock.h" | 15 #include "testing/gmock/include/gmock/gmock.h" |
| 16 #include "testing/gtest/include/gtest/gtest.h" | 16 #include "testing/gtest/include/gtest/gtest.h" |
| 17 | 17 |
| 18 using ::testing::_; | 18 using ::testing::_; |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 base::Unretained(output_stream))); | 114 base::Unretained(output_stream))); |
| 115 | 115 |
| 116 audio_message_loop()->PostTask( | 116 audio_message_loop()->PostTask( |
| 117 FROM_HERE, base::Bind(&MockVirtualAudioInputStream::Close, | 117 FROM_HERE, base::Bind(&MockVirtualAudioInputStream::Close, |
| 118 base::Unretained(input_stream))); | 118 base::Unretained(input_stream))); |
| 119 | 119 |
| 120 SyncWithAudioThread(); | 120 SyncWithAudioThread(); |
| 121 } | 121 } |
| 122 | 122 |
| 123 } // namespace media | 123 } // namespace media |
| OLD | NEW |