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 | #ifndef NSEDITORCID_H___ |
michael@0 | 6 | |
michael@0 | 7 | #define NS_EDITOR_CID \ |
michael@0 | 8 | {/* {D3DE3431-8A75-11d2-918C-0080C8E44DB5}*/ \ |
michael@0 | 9 | 0xd3de3431, 0x8a75, 0x11d2, \ |
michael@0 | 10 | { 0x91, 0x8c, 0x0, 0x80, 0xc8, 0xe4, 0x4d, 0xb5 } } |
michael@0 | 11 | |
michael@0 | 12 | #define NS_TEXTEDITOR_CID \ |
michael@0 | 13 | {/* {e197cc01-cfe1-11d4-8eb0-87ae406dfd3f}*/ \ |
michael@0 | 14 | 0xe197cc01, 0xcfe1, 0x11d4, \ |
michael@0 | 15 | { 0x8e, 0xb0, 0x87, 0xae, 0x40, 0x6d, 0xfd, 0x3f } } |
michael@0 | 16 | |
michael@0 | 17 | #define NS_HTMLEDITOR_CID \ |
michael@0 | 18 | {/* {ed0244e0-c144-11d2-8f4c-006008159b0c}*/ \ |
michael@0 | 19 | 0xed0244e0, 0xc144, 0x11d2, \ |
michael@0 | 20 | { 0x8f, 0x4c, 0x0, 0x60, 0x08, 0x15, 0x9b, 0x0c } } |
michael@0 | 21 | |
michael@0 | 22 | #endif //NSEDITORCID_H___ |
michael@0 | 23 | |
michael@0 | 24 | |
michael@0 | 25 |