Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | #include "nsISupports.idl" |
michael@0 | 6 | |
michael@0 | 7 | interface nsIMacWebAppUtils; |
michael@0 | 8 | |
michael@0 | 9 | [scriptable, function, uuid(8c899c4f-58c1-4b74-9034-3bb64e484b68)] |
michael@0 | 10 | interface nsITrashAppCallback : nsISupports |
michael@0 | 11 | { |
michael@0 | 12 | void trashAppFinished(in nsresult rv); |
michael@0 | 13 | }; |
michael@0 | 14 | |
michael@0 | 15 | /** |
michael@0 | 16 | * Allow MozApps API to locate and manipulate natively installed apps |
michael@0 | 17 | */ |
michael@0 | 18 | |
michael@0 | 19 | [scriptable, uuid(c69cf343-ea41-428b-b161-4655fd54d8e7)] |
michael@0 | 20 | interface nsIMacWebAppUtils : nsISupports { |
michael@0 | 21 | /** |
michael@0 | 22 | * Find the path for an app with the given signature. |
michael@0 | 23 | */ |
michael@0 | 24 | AString pathForAppWithIdentifier(in AString bundleIdentifier); |
michael@0 | 25 | |
michael@0 | 26 | /** |
michael@0 | 27 | * Launch the app with the given identifier, if it exists. |
michael@0 | 28 | */ |
michael@0 | 29 | void launchAppWithIdentifier(in AString bundleIdentifier); |
michael@0 | 30 | |
michael@0 | 31 | /** |
michael@0 | 32 | * Move the app from the given directory to the Trash. |
michael@0 | 33 | */ |
michael@0 | 34 | void trashApp(in AString path, in nsITrashAppCallback callback); |
michael@0 | 35 | }; |