| 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 #ifndef CONTENT_TEST_WEBRTC_AUDIO_DEVICE_TEST_H_ | 5 #ifndef CONTENT_TEST_WEBRTC_AUDIO_DEVICE_TEST_H_ |
| 6 #define CONTENT_TEST_WEBRTC_AUDIO_DEVICE_TEST_H_ | 6 #define CONTENT_TEST_WEBRTC_AUDIO_DEVICE_TEST_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 } | 43 } |
| 44 #endif | 44 #endif |
| 45 | 45 |
| 46 namespace content { | 46 namespace content { |
| 47 | 47 |
| 48 class AudioInputRendererHost; | 48 class AudioInputRendererHost; |
| 49 class AudioMirroringManager; | 49 class AudioMirroringManager; |
| 50 class AudioRendererHost; | 50 class AudioRendererHost; |
| 51 class ContentRendererClient; | 51 class ContentRendererClient; |
| 52 class MediaStreamManager; | 52 class MediaStreamManager; |
| 53 class MockResourceContext; | |
| 54 class RenderThreadImpl; | 53 class RenderThreadImpl; |
| 55 class ResourceContext; | 54 class ResourceContext; |
| 56 class TestBrowserThread; | 55 class TestBrowserThread; |
| 57 class WebRTCMockRenderProcess; | 56 class WebRTCMockRenderProcess; |
| 58 | 57 |
| 59 // Scoped class for WebRTC interfaces. Fetches the wrapped interface | 58 // Scoped class for WebRTC interfaces. Fetches the wrapped interface |
| 60 // in the constructor via WebRTC's GetInterface mechanism and then releases | 59 // in the constructor via WebRTC's GetInterface mechanism and then releases |
| 61 // the reference in the destructor. | 60 // the reference in the destructor. |
| 62 template<typename T> | 61 template<typename T> |
| 63 class ScopedWebRTCPtr { | 62 class ScopedWebRTCPtr { |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 virtual int SendPacket(int channel, const void* data, int len) OVERRIDE; | 196 virtual int SendPacket(int channel, const void* data, int len) OVERRIDE; |
| 198 virtual int SendRTCPPacket(int channel, const void* data, int len) OVERRIDE; | 197 virtual int SendRTCPPacket(int channel, const void* data, int len) OVERRIDE; |
| 199 | 198 |
| 200 private: | 199 private: |
| 201 webrtc::VoENetwork* network_; | 200 webrtc::VoENetwork* network_; |
| 202 }; | 201 }; |
| 203 | 202 |
| 204 } // namespace content | 203 } // namespace content |
| 205 | 204 |
| 206 #endif // CONTENT_TEST_WEBRTC_AUDIO_DEVICE_TEST_H_ | 205 #endif // CONTENT_TEST_WEBRTC_AUDIO_DEVICE_TEST_H_ |
| OLD | NEW |