Index: chrome/common/extensions/api/webrtc_cast_udp_transport.idl |
diff --git a/chrome/common/extensions/api/webrtc_cast_udp_transport.idl b/chrome/common/extensions/api/webrtc_cast_udp_transport.idl |
deleted file mode 100644 |
index 26ad6e594abfe701c5fa736ec17e561bcb3f1df7..0000000000000000000000000000000000000000 |
--- a/chrome/common/extensions/api/webrtc_cast_udp_transport.idl |
+++ /dev/null |
@@ -1,26 +0,0 @@ |
-// Copyright 2013 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-// The <code>chrome.webrtc.castUdpTransport</code> API represents a UDP |
-// transport for Cast RTP streams. This API is not useful when standalone |
-// since it does not have send and receive methods. |
-// It is used to configure the UDP transport used in Cast session. |
-namespace webrtc.castUdpTransport { |
- // The UDP socket address and port. |
- dictionary UdpParams { |
- DOMString address; |
- long port; |
- }; |
- |
- interface Functions { |
- // Destroys a UDP transport. |
- // |transportId| : The transport ID. |
- [nocompile] static void destroy(long transportId); |
- |
- // Starts to use the transport by providing remote UDP info. |
- // |transportId| : The transport ID. |
- // |remoteParams| : The address and port to send packets to. |
- [nocompile] static void start(long transportId, UdpParams remoteParams); |
- }; |
-}; |