Source code
Revision control
Copy as Markdown
Other Tools
/* 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
// Speculation Rules Prefetch IPC protocol.
//
// One actor pair per prefetch record; managed by PWindowGlobal so that the
// pair is torn down automatically when the document navigates away or the
// window closes.
//
include protocol PWindowGlobal;
include PrefetchIPCTypes;
namespace mozilla {
namespace dom {
async protocol PPrefetchRecord {
manager PWindowGlobal;
parent:
async Cancel();
async __delete__();
};
} // namespace dom
} // namespace mozilla