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

Side by Side Diff: webrtc/media/engine/fakewebrtccall.h

Issue 3007553002: Removing dependencies on stub headers within WebRTC. (Closed)
Patch Set: Created 3 years, 3 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
« no previous file with comments | « no previous file | webrtc/modules/video_coding/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 13 matching lines...) Expand all
24 #include <string> 24 #include <string>
25 #include <vector> 25 #include <vector>
26 26
27 #include "webrtc/api/video/video_frame.h" 27 #include "webrtc/api/video/video_frame.h"
28 #include "webrtc/call/audio_receive_stream.h" 28 #include "webrtc/call/audio_receive_stream.h"
29 #include "webrtc/call/audio_send_stream.h" 29 #include "webrtc/call/audio_send_stream.h"
30 #include "webrtc/call/call.h" 30 #include "webrtc/call/call.h"
31 #include "webrtc/call/flexfec_receive_stream.h" 31 #include "webrtc/call/flexfec_receive_stream.h"
32 #include "webrtc/modules/rtp_rtcp/source/rtp_packet_received.h" 32 #include "webrtc/modules/rtp_rtcp/source/rtp_packet_received.h"
33 #include "webrtc/rtc_base/buffer.h" 33 #include "webrtc/rtc_base/buffer.h"
34 #include "webrtc/video_receive_stream.h" 34 #include "webrtc/call/video_receive_stream.h"
35 #include "webrtc/video_send_stream.h" 35 #include "webrtc/call/video_send_stream.h"
36 36
37 namespace cricket { 37 namespace cricket {
38 class FakeAudioSendStream final : public webrtc::AudioSendStream { 38 class FakeAudioSendStream final : public webrtc::AudioSendStream {
39 public: 39 public:
40 struct TelephoneEvent { 40 struct TelephoneEvent {
41 int payload_type = -1; 41 int payload_type = -1;
42 int payload_frequency = -1; 42 int payload_frequency = -1;
43 int event_code = 0; 43 int event_code = 0;
44 int duration_ms = 0; 44 int duration_ms = 0;
45 }; 45 };
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 321
322 int num_created_send_streams_; 322 int num_created_send_streams_;
323 int num_created_receive_streams_; 323 int num_created_receive_streams_;
324 324
325 int audio_transport_overhead_; 325 int audio_transport_overhead_;
326 int video_transport_overhead_; 326 int video_transport_overhead_;
327 }; 327 };
328 328
329 } // namespace cricket 329 } // namespace cricket
330 #endif // WEBRTC_MEDIA_ENGINE_FAKEWEBRTCCALL_H_ 330 #endif // WEBRTC_MEDIA_ENGINE_FAKEWEBRTCCALL_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/video_coding/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698