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

Unified Diff: chrome/common/extensions/api/cast_streaming_session.idl

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
Index: chrome/common/extensions/api/cast_streaming_session.idl
diff --git a/chrome/common/extensions/api/cast_streaming_session.idl b/chrome/common/extensions/api/cast_streaming_session.idl
index 5250c61e509b8c8b1996132fee97c625befdc14d..47408f0f8925ef21956d99d9d1fb68a3a2f76142 100644
--- a/chrome/common/extensions/api/cast_streaming_session.idl
+++ b/chrome/common/extensions/api/cast_streaming_session.idl
@@ -7,15 +7,15 @@
// by RTP streams and a network transport.
//
// Calling this API will generate corresponding resources for use with
-// chrome.webrtc.castSendTransport and chrome.webrtc.castUdpTransport
+// chrome.cast.streaming.rtpStream and chrome.cast.streaming.udpTransport
// APIs.
namespace cast.streaming.session {
// Callback from the <code>create</code> method.
- // |audioTransportId| : The audio transport ID.
- // |videoTransportId| : The video transport ID.
+ // |audioStreamId| : The audio RTP stream ID.
+ // |videoStreamId| : The video RTP stream ID.
// |udpTransportId| : The UDP transport ID.
- callback CreateCallback = void (long audioTransportId,
- long videoTransportId,
+ callback CreateCallback = void (long audioStreamId,
+ long videoStreamId,
long udpTransportId);
interface Functions {

Powered by Google App Engine
This is Rietveld 408576698