Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(87)

Side by Side Diff: content/renderer/media/mock_peer_connection_impl.cc

Issue 1547073003: Switch to standard integer types in content/renderer/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698