gecko-dev/media/mtransport/ipc/PStunAddrsRequest.ipdl
Michael Froman 31e4ce10aa Bug 1350055 - fix --disable-webrtc build with new PStunAddrsRequest.ipdl r=jduell
MozReview-Commit-ID: 5oxJtUppHWC

--HG--
extra : rebase_source : 7cfbddb1168711439530b3ead47bd35bec70ab80
2017-03-23 20:04:41 -05:00

29 lines
612 B
Plaintext

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
include protocol PNecko;
using NrIceStunAddrArray from "mozilla/net/PStunAddrsParams.h";
include "mozilla/net/NrIceStunAddrMessageUtils.h";
namespace mozilla {
namespace net {
async protocol PStunAddrsRequest
{
manager PNecko;
parent:
async GetStunAddrs();
async __delete__();
child:
async OnStunAddrsAvailable(NrIceStunAddrArray iceStunAddrs);
};
} // namespace net
} // namespace mozilla