PBackgroundSessionStorageService.ipdl (532B)
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 PBackground; 6 7 namespace mozilla { 8 namespace dom { 9 10 [ChildImpl="SessionStorageService"] 11 protocol PBackgroundSessionStorageService 12 { 13 manager PBackground; 14 15 parent: 16 async __delete__(); 17 18 async ClearStoragesForOrigin(nsCString originAttrs, nsCString originKey); 19 }; 20 21 } // namespace dom 22 } // namespace mozilla