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 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | #ifndef nsIWordBreaker_h__ |
michael@0 | 6 | #define nsIWordBreaker_h__ |
michael@0 | 7 | |
michael@0 | 8 | #include "nsISupports.h" |
michael@0 | 9 | |
michael@0 | 10 | #include "nscore.h" |
michael@0 | 11 | |
michael@0 | 12 | #define NS_WORDBREAKER_NEED_MORE_TEXT -1 |
michael@0 | 13 | |
michael@0 | 14 | // {E86B3379-BF89-11d2-B3AF-00805F8A6670} |
michael@0 | 15 | #define NS_IWORDBREAKER_IID \ |
michael@0 | 16 | { 0xe86b3379, 0xbf89, 0x11d2, \ |
michael@0 | 17 | { 0xb3, 0xaf, 0x0, 0x80, 0x5f, 0x8a, 0x66, 0x70 } } |
michael@0 | 18 | |
michael@0 | 19 | typedef struct { |
michael@0 | 20 | uint32_t mBegin; |
michael@0 | 21 | uint32_t mEnd; |
michael@0 | 22 | } nsWordRange; |
michael@0 | 23 | |
michael@0 | 24 | class nsIWordBreaker : public nsISupports |
michael@0 | 25 | { |
michael@0 | 26 | public: |
michael@0 | 27 | NS_DECLARE_STATIC_IID_ACCESSOR(NS_IWORDBREAKER_IID) |
michael@0 | 28 | |
michael@0 | 29 | virtual bool BreakInBetween(const char16_t* aText1 , uint32_t aTextLen1, |
michael@0 | 30 | const char16_t* aText2 , |
michael@0 | 31 | uint32_t aTextLen2) = 0; |
michael@0 | 32 | virtual nsWordRange FindWord(const char16_t* aText1 , uint32_t aTextLen1, |
michael@0 | 33 | uint32_t aOffset) = 0; |
michael@0 | 34 | virtual int32_t NextWord(const char16_t* aText, uint32_t aLen, |
michael@0 | 35 | uint32_t aPos) = 0; |
michael@0 | 36 | |
michael@0 | 37 | }; |
michael@0 | 38 | |
michael@0 | 39 | NS_DEFINE_STATIC_IID_ACCESSOR(nsIWordBreaker, NS_IWORDBREAKER_IID) |
michael@0 | 40 | |
michael@0 | 41 | #endif /* nsIWordBreaker_h__ */ |