| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "content/browser/renderer_host/media/audio_input_renderer_host.h" | 5 #include "content/browser/renderer_host/media/audio_input_renderer_host.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| 11 #include "base/command_line.h" | 11 #include "base/command_line.h" |
| 12 #include "base/memory/ptr_util.h" | 12 #include "base/memory/ptr_util.h" |
| 13 #include "base/run_loop.h" | 13 #include "base/run_loop.h" |
| 14 #include "base/threading/thread_task_runner_handle.h" | 14 #include "base/threading/thread_task_runner_handle.h" |
| 15 #include "content/browser/bad_message.h" | 15 #include "content/browser/bad_message.h" |
| 16 #include "content/browser/media/capture/audio_mirroring_manager.h" | 16 #include "content/browser/media/capture/audio_mirroring_manager.h" |
| 17 #include "content/browser/renderer_host/media/audio_input_device_manager.h" | 17 #include "content/browser/renderer_host/media/audio_input_device_manager.h" |
| 18 #include "content/browser/renderer_host/media/media_stream_manager.h" | 18 #include "content/browser/renderer_host/media/media_stream_manager.h" |
| 19 #include "content/browser/renderer_host/media/media_stream_ui_proxy.h" | 19 #include "content/browser/renderer_host/media/media_stream_ui_proxy.h" |
| 20 #include "content/public/browser/browser_thread.h" | 20 #include "content/public/browser/browser_thread.h" |
| 21 #include "content/public/common/content_switches.h" | 21 #include "content/public/common/content_switches.h" |
| 22 #include "content/public/test/mock_render_process_host.h" | 22 #include "content/public/test/mock_render_process_host.h" |
| 23 #include "content/public/test/test_browser_context.h" | 23 #include "content/public/test/test_browser_context.h" |
| 24 #include "content/public/test/test_browser_thread.h" | 24 #include "content/public/test/test_browser_thread.h" |
| 25 #include "content/public/test/test_browser_thread_bundle.h" | 25 #include "content/public/test/test_browser_thread_bundle.h" |
| 26 #include "media/audio/audio_device_description.h" | 26 #include "media/audio/audio_device_description.h" |
| 27 #include "media/audio/audio_input_writer.h" | 27 #include "media/audio/audio_file_writer.h" |
| 28 #include "media/audio/fake_audio_log_factory.h" | 28 #include "media/audio/fake_audio_log_factory.h" |
| 29 #include "media/audio/fake_audio_manager.h" | 29 #include "media/audio/fake_audio_manager.h" |
| 30 #include "media/base/media_switches.h" | 30 #include "media/base/media_switches.h" |
| 31 #include "testing/gmock/include/gmock/gmock.h" | 31 #include "testing/gmock/include/gmock/gmock.h" |
| 32 #include "testing/gtest/include/gtest/gtest.h" | 32 #include "testing/gtest/include/gtest/gtest.h" |
| 33 #include "url/gurl.h" | 33 #include "url/gurl.h" |
| 34 #include "url/origin.h" | 34 #include "url/origin.h" |
| 35 | 35 |
| 36 using ::media::AudioInputController; | 36 using ::media::AudioInputController; |
| 37 using ::testing::_; | 37 using ::testing::_; |
| (...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 548 EXPECT_CALL(controller_factory_, ControllerCreated()); | 548 EXPECT_CALL(controller_factory_, ControllerCreated()); |
| 549 | 549 |
| 550 airh_->OnMessageReceived(AudioInputHostMsg_CreateStream( | 550 airh_->OnMessageReceived(AudioInputHostMsg_CreateStream( |
| 551 kStreamId, kRenderFrameId, session_id, DefaultConfig())); | 551 kStreamId, kRenderFrameId, session_id, DefaultConfig())); |
| 552 base::RunLoop().RunUntilIdle(); | 552 base::RunLoop().RunUntilIdle(); |
| 553 | 553 |
| 554 EXPECT_CALL(*controller_factory_.controller(0), Close(_)); | 554 EXPECT_CALL(*controller_factory_.controller(0), Close(_)); |
| 555 } | 555 } |
| 556 | 556 |
| 557 } // namespace content | 557 } // namespace content |
| OLD | NEW |