mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
31 lines
785 B
Plaintext
31 lines
785 B
Plaintext
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
/* 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 PTelephony;
|
|
include TelephonyTypes;
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
namespace telephony {
|
|
|
|
protocol PTelephonyRequest
|
|
{
|
|
manager PTelephony;
|
|
|
|
child:
|
|
NotifyEnumerateCallState(uint32_t aClientId, IPCCallStateData aData);
|
|
|
|
/**
|
|
* Sent when the asynchronous request has completed. It's currently only for
|
|
* request call enumeration.
|
|
*/
|
|
__delete__();
|
|
};
|
|
|
|
} /* namespace telephony */
|
|
} /* namespace dom */
|
|
} /* namespace mozilla */
|