Thu, 15 Jan 2015 15:59:08 +0100
Implement a real Private Browsing Mode condition by changing the API/ABI;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim:set ts=2 sw=2 sts=2 et cindent: */
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 "nsIDNSService.idl"
9 /**
10 * This is a private interface used by the internals of the networking library.
11 * It will never be frozen. Do not use it in external code.
12 */
13 [scriptable, uuid(6b16fb1f-5709-4c94-a89f-a22be873c54d)]
14 interface nsPIDNSService : nsIDNSService
15 {
16 /**
17 * called to initialize the DNS service.
18 */
19 void init();
21 /**
22 * called to shutdown the DNS service. any pending asynchronous
23 * requests will be canceled, and the local cache of DNS records
24 * will be cleared. NOTE: the operating system may still have
25 * its own cache of DNS records, which would be unaffected by
26 * this method.
27 */
28 void shutdown();
30 /**
31 * Whether or not DNS prefetching (aka RESOLVE_SPECULATE) is enabled
32 */
33 attribute boolean prefetchEnabled;
35 /**
36 * @return whether the DNS service is offline.
37 */
38 attribute boolean offline;
39 };