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.
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 *
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 "nsISupports.idl"
9 interface imgIRequest;
11 %{C++
12 #include "nsRect.h"
13 %}
15 [ptr] native nsIntRect(nsIntRect);
17 [scriptable, builtinclass, uuid(ac65c702-7771-4f6d-b18b-1c7d806ce3c1)]
18 interface imgINotificationObserver : nsISupports
19 {
20 const long SIZE_AVAILABLE = 1;
21 const long FRAME_UPDATE = 2;
22 const long FRAME_COMPLETE = 3;
23 const long LOAD_COMPLETE = 4;
24 const long DECODE_COMPLETE = 5;
25 const long DISCARD = 6;
26 const long UNLOCKED_DRAW = 7;
27 const long IS_ANIMATED = 8;
29 [noscript] void notify(in imgIRequest aProxy, in long aType, [const] in nsIntRect aRect);
30 };