Bug 1856777 [wpt PR 42330] - Update wpt metadata, a=testonly
[gecko.git] / dom / ipc / PLoginReputation.ipdl
blob1a9c553a1c48b3b276cfc43d0957b757ee78754a
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2  * vim: sw=2 ts=8 et :
3  */
4 /* This Source Code Form is subject to the terms of the Mozilla Public
5  * License, v. 2.0. If a copy of the MPL was not distributed with this
6  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
8 include protocol PContent;
10 include "mozilla/LoginReputationIPC.h";
12 namespace mozilla {
13 namespace dom {
15 // PLoginReputation allows child to send URL to parent when user focuses
16 // on a password field. Right now this is an one way IPC call (No callback
17 // will return after parent receives the IPC message) since we just process
18 // the URL in parent (LoginReputationService) and stores the result to telemetry.
19 [ManualDealloc, ChildImpl=virtual, ParentImpl="LoginReputationParent"]
20 protocol PLoginReputation
22   manager PContent;
24 child:
25   async __delete__();
28 } // namespace dom
29 } // namespace mozilla