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

Unified Diff: chrome/renderer/media/cast_rtp_stream.h

Issue 90083002: Cast Extensions API: Major namespace and object renaming (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix unit_tests Created 7 years 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 | « chrome/renderer/extensions/webrtc_native_handler.cc ('k') | chrome/renderer/media/cast_rtp_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/media/cast_rtp_stream.h
diff --git a/chrome/renderer/media/cast_send_transport.h b/chrome/renderer/media/cast_rtp_stream.h
similarity index 89%
rename from chrome/renderer/media/cast_send_transport.h
rename to chrome/renderer/media/cast_rtp_stream.h
index b30f564f216ac9f7c1629f4bcc2294ef6ff48b30..a21923475191faf2d49fb020e9234513d077166c 100644
--- a/chrome/renderer/media/cast_send_transport.h
+++ b/chrome/renderer/media/cast_rtp_stream.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_RENDERER_MEDIA_CAST_SEND_TRANSPORT_H_
-#define CHROME_RENDERER_MEDIA_CAST_SEND_TRANSPORT_H_
+#ifndef CHROME_RENDERER_MEDIA_CAST_RTP_STREAM_H_
+#define CHROME_RENDERER_MEDIA_CAST_RTP_STREAM_H_
#include <string>
#include <vector>
@@ -79,11 +79,11 @@ typedef CastRtpCaps CastRtpParams;
// Note that this object does not actually output packets. It allows
// configuration of encoding and RTP parameters and control such a logical
// stream.
-class CastSendTransport {
+class CastRtpStream {
public:
- CastSendTransport(const blink::WebMediaStreamTrack& track,
+ CastRtpStream(const blink::WebMediaStreamTrack& track,
const scoped_refptr<CastSession>& session);
- ~CastSendTransport();
+ ~CastRtpStream();
// Return capabilities currently supported by this transport.
CastRtpCaps GetCaps();
@@ -107,7 +107,7 @@ class CastSendTransport {
const scoped_refptr<CastSession> cast_session_;
CastRtpParams params_;
- DISALLOW_COPY_AND_ASSIGN(CastSendTransport);
+ DISALLOW_COPY_AND_ASSIGN(CastRtpStream);
};
-#endif // CHROME_RENDERER_MEDIA_CAST_SEND_TRANSPORT_H_
+#endif // CHROME_RENDERER_MEDIA_CAST_RTP_STREAM_H_
« no previous file with comments | « chrome/renderer/extensions/webrtc_native_handler.cc ('k') | chrome/renderer/media/cast_rtp_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698