nsIStreamingProtocolService.idl 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
  2. /* This Source Code Form is subject to the terms of the Mozilla Public
  3. * License, v. 2.0. If a copy of the MPL was not distributed with this
  4. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  5. interface nsIStreamingProtocolController;
  6. interface nsIChannel;
  7. #include "nsISupports.idl"
  8. %{C++
  9. #define NS_MEDIASTREAMCONTROLLERSERVICE_CID \
  10. { 0x94838530, 0x8627, 0x11e2, \
  11. { \
  12. 0x9e, 0x96, 0x08, 0x00, \
  13. 0x20, 0x0c, 0x9a, 0x66 \
  14. } \
  15. }
  16. #define MEDIASTREAMCONTROLLERSERVICE_CONTRACTID \
  17. "@mozilla.org/mediastream/mediastreamcontrollerservice;1"
  18. %}
  19. /**
  20. * Media stream controller Service API.
  21. */
  22. [uuid(94838530-8627-11e2-9e96-0800200c9a66)]
  23. interface nsIStreamingProtocolControllerService : nsISupports
  24. {
  25. /*
  26. * Create a new media stream controller from the given channel.
  27. * @param channel nsIChannel for the given URI.
  28. */
  29. nsIStreamingProtocolController create(in nsIChannel channel);
  30. };