Bug 1807268 - Re-enable verifyShowClipboardSuggestionsToggleTest UI test r=jajohnson
[gecko.git] / netwerk / dns / PTRRService.ipdl
blob14059e033f491881fb7704add9b5248aa00c690f
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set sw=2 ts=8 et tw=80 ft=cpp : */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4  * License, v. 2.0. If a copy of the MPL was not distributed with this
5  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 include protocol PSocketProcess;
9 include NeckoChannelParams;
10 include PSMIPCTypes;
12 namespace mozilla {
13 namespace net {
15 async protocol PTRRService
17   manager PSocketProcess;
19 parent:
20   async NotifyNetworkConnectivityServiceObservers(nsCString aTopic);
21   async InitTRRConnectionInfo();
22   async SetConfirmationState(uint32_t aNewState);
24 child:
25   async __delete__();
26   async UpdatePlatformDNSInformation(nsCString[] aSuffixList);
27   async UpdateParentalControlEnabled(bool aEnabled);
28   async ClearDNSCache(bool aTrrToo);
29   async SetDetectedTrrURI(nsCString aURI);
30   async SetDefaultTRRConnectionInfo(HttpConnectionInfoCloneArgs? aConnInfoArgs);
31   async UpdateEtcHosts(nsCString[] aHosts);
34 } //namespace net
35 } //namespace mozilla