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

Unified Diff: webrtc/audio_send_stream.h

Issue 1369263002: Unify Transport and newapi::Transport interfaces. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: self-review Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « talk/media/webrtc/webrtcvoiceengine.h ('k') | webrtc/call/transport_adapter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/audio_send_stream.h
diff --git a/webrtc/audio_send_stream.h b/webrtc/audio_send_stream.h
index 7ae6afd38ca908e18410d3cd0240ee4860b76d41..695d28f21e02ddfed09391a4019266d4b861a4a6 100644
--- a/webrtc/audio_send_stream.h
+++ b/webrtc/audio_send_stream.h
@@ -29,7 +29,7 @@ class AudioSendStream : public SendStream {
struct Config {
Config() = delete;
- explicit Config(newapi::Transport* send_transport)
+ explicit Config(Transport* send_transport)
: send_transport(send_transport) {}
std::string ToString() const;
@@ -46,7 +46,7 @@ class AudioSendStream : public SendStream {
} rtp;
// Transport for outgoing packets.
- newapi::Transport* send_transport = nullptr;
+ Transport* send_transport = nullptr;
rtc::scoped_ptr<AudioEncoder> encoder;
int cng_payload_type = -1; // pt, or -1 to disable Comfort Noise Generator.
« no previous file with comments | « talk/media/webrtc/webrtcvoiceengine.h ('k') | webrtc/call/transport_adapter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698