Bug 1472338: part 2) Change `clipboard.readText()` to read from the clipboard asynchr...
[gecko.git] / dom / midi / PMIDIPort.ipdl
blob1de8a83196adbb79a2bb616539ea0c4e0a4fd32f
1 /* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
2 /* vim: set ts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
5  * You can obtain one at http://mozilla.org/MPL/2.0/. */
7 include protocol PBackground;
8 include MIDITypes;
10 namespace mozilla {
11 namespace dom {
13 [ManualDealloc]
14 async protocol PMIDIPort
16   manager PBackground;
17 parent:
18   async Shutdown();
19   async Send(MIDIMessage[] msg);
20   async Open();
21   async Close();
22   async Clear();
23 child:
24   async Receive(MIDIMessage[] msg);
25   // Actually takes a MIDIDeviceConnectionState and MIDIPortConnectionState
26   // respectively.
27   async UpdateStatus(uint32_t deviceState, uint32_t connectionState);
28   async __delete__();