PCacheOp.ipdl (674B)
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 PCache; 6 include protocol PCacheStorage; 7 include protocol PCacheStreamControl; 8 9 include CacheTypes; 10 11 include "ipc/ErrorIPCUtils.h"; 12 13 using mozilla::CopyableErrorResult from "mozilla/ErrorResult.h"; 14 15 namespace mozilla { 16 namespace dom { 17 namespace cache { 18 19 protocol PCacheOp 20 { 21 manager PCache or PCacheStorage; 22 23 child: 24 async __delete__(CopyableErrorResult aRv, CacheOpResult aResult); 25 }; 26 27 } // namespace cache 28 } // namespace dom 29 } // namespace mozilla