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 { |