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/renderer/media/mock_peer_connection_impl.h" | 5 #include "content/renderer/media/mock_peer_connection_impl.h" |
6 | 6 |
| 7 #include <stddef.h> |
| 8 |
7 #include <vector> | 9 #include <vector> |
8 | 10 |
9 #include "base/logging.h" | 11 #include "base/logging.h" |
10 #include "content/renderer/media/mock_data_channel_impl.h" | 12 #include "content/renderer/media/mock_data_channel_impl.h" |
11 #include "content/renderer/media/webrtc/mock_peer_connection_dependency_factory.
h" | 13 #include "content/renderer/media/webrtc/mock_peer_connection_dependency_factory.
h" |
12 | 14 |
13 using testing::_; | 15 using testing::_; |
14 using webrtc::AudioTrackInterface; | 16 using webrtc::AudioTrackInterface; |
15 using webrtc::CreateSessionDescriptionObserver; | 17 using webrtc::CreateSessionDescriptionObserver; |
16 using webrtc::DtmfSenderInterface; | 18 using webrtc::DtmfSenderInterface; |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
266 sdp_mline_index_ = candidate->sdp_mline_index(); | 268 sdp_mline_index_ = candidate->sdp_mline_index(); |
267 return candidate->ToString(&ice_sdp_); | 269 return candidate->ToString(&ice_sdp_); |
268 } | 270 } |
269 | 271 |
270 void MockPeerConnectionImpl::RegisterUMAObserver( | 272 void MockPeerConnectionImpl::RegisterUMAObserver( |
271 webrtc::UMAObserver* observer) { | 273 webrtc::UMAObserver* observer) { |
272 NOTIMPLEMENTED(); | 274 NOTIMPLEMENTED(); |
273 } | 275 } |
274 | 276 |
275 } // namespace content | 277 } // namespace content |
OLD | NEW |