| 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 "content/browser/renderer_host/media/audio_renderer_host.h" | 5 #include "content/browser/renderer_host/media/audio_renderer_host.h" |
| 6 | 6 /* |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 | 8 |
| 9 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| 11 #include "base/bind.h" | 11 #include "base/bind.h" |
| 12 #include "base/command_line.h" | 12 #include "base/command_line.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/run_loop.h" | 14 #include "base/run_loop.h" |
| 15 #include "base/sync_socket.h" | 15 #include "base/sync_socket.h" |
| 16 #include "content/browser/media/capture/audio_mirroring_manager.h" | 16 #include "content/browser/media/capture/audio_mirroring_manager.h" |
| (...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 } | 446 } |
| 447 | 447 |
| 448 TEST_F(AudioRendererHostTest, CreateFailsForInvalidRenderFrame) { | 448 TEST_F(AudioRendererHostTest, CreateFailsForInvalidRenderFrame) { |
| 449 CreateWithInvalidRenderFrameId(); | 449 CreateWithInvalidRenderFrameId(); |
| 450 Close(); | 450 Close(); |
| 451 } | 451 } |
| 452 | 452 |
| 453 // TODO(hclam): Add tests for data conversation in low latency mode. | 453 // TODO(hclam): Add tests for data conversation in low latency mode. |
| 454 | 454 |
| 455 } // namespace content | 455 } // namespace content |
| 456 */ |
| OLD | NEW |