PFileSystemWritableFileStream.ipdl (544B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this file, 3 * You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 include protocol PFileSystemManager; 6 7 using struct mozilla::void_t from "mozilla/ipc/IPCCore.h"; 8 9 namespace mozilla { 10 namespace dom { 11 12 async protocol PFileSystemWritableFileStream 13 { 14 manager PFileSystemManager; 15 16 parent: 17 async Close(bool aAbort) returns(void_t ok); 18 19 async __delete__(); 20 }; 21 22 } // namespace dom 23 } // namespace mozilla