| 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/environment.h" | 6 #include "base/environment.h" |
| 7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
| 8 #include "base/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
| 9 #include "base/process_util.h" | |
| 10 #include "base/sync_socket.h" | 9 #include "base/sync_socket.h" |
| 11 #include "content/browser/browser_thread_impl.h" | 10 #include "content/browser/browser_thread_impl.h" |
| 12 #include "content/browser/renderer_host/media/audio_input_device_manager.h" | 11 #include "content/browser/renderer_host/media/audio_input_device_manager.h" |
| 13 #include "content/browser/renderer_host/media/audio_mirroring_manager.h" | 12 #include "content/browser/renderer_host/media/audio_mirroring_manager.h" |
| 14 #include "content/browser/renderer_host/media/audio_renderer_host.h" | 13 #include "content/browser/renderer_host/media/audio_renderer_host.h" |
| 15 #include "content/browser/renderer_host/media/media_stream_manager.h" | 14 #include "content/browser/renderer_host/media/media_stream_manager.h" |
| 16 #include "content/browser/renderer_host/media/mock_media_observer.h" | 15 #include "content/browser/renderer_host/media/mock_media_observer.h" |
| 17 #include "content/common/media/audio_messages.h" | 16 #include "content/common/media/audio_messages.h" |
| 18 #include "content/common/media/media_stream_options.h" | 17 #include "content/common/media/media_stream_options.h" |
| 19 #include "ipc/ipc_message_utils.h" | 18 #include "ipc/ipc_message_utils.h" |
| (...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 } | 430 } |
| 432 | 431 |
| 433 TEST_F(AudioRendererHostTest, CreateUnifiedStreamAndClose) { | 432 TEST_F(AudioRendererHostTest, CreateUnifiedStreamAndClose) { |
| 434 CreateUnifiedStream(); | 433 CreateUnifiedStream(); |
| 435 Close(); | 434 Close(); |
| 436 } | 435 } |
| 437 | 436 |
| 438 // TODO(hclam): Add tests for data conversation in low latency mode. | 437 // TODO(hclam): Add tests for data conversation in low latency mode. |
| 439 | 438 |
| 440 } // namespace content | 439 } // namespace content |
| OLD | NEW |