Sat, 03 Jan 2015 20:18:00 +0100
Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- |
michael@0 | 2 | * |
michael@0 | 3 | * This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 6 | |
michael@0 | 7 | /* Classes to manage lookup of static names in a table. */ |
michael@0 | 8 | |
michael@0 | 9 | #ifndef nsStaticNameTable_h___ |
michael@0 | 10 | #define nsStaticNameTable_h___ |
michael@0 | 11 | |
michael@0 | 12 | #include "pldhash.h" |
michael@0 | 13 | #include "nsString.h" |
michael@0 | 14 | |
michael@0 | 15 | /* This class supports case insensitive lookup. |
michael@0 | 16 | * |
michael@0 | 17 | * It differs from atom tables: |
michael@0 | 18 | * - It supports case insensitive lookup. |
michael@0 | 19 | * - It has minimal footprint by not copying the string table. |
michael@0 | 20 | * - It does no locking. |
michael@0 | 21 | * - It returns zero based indexes and const nsCString& as required by its |
michael@0 | 22 | * callers in the parser. |
michael@0 | 23 | * - It is not an xpcom interface - meant for fast lookup in static tables. |
michael@0 | 24 | * |
michael@0 | 25 | * ***REQUIREMENTS*** |
michael@0 | 26 | * - It *requires* that all entries in the table be lowercase only. |
michael@0 | 27 | * - It *requires* that the table of strings be in memory that lives at least |
michael@0 | 28 | * as long as this table object - typically a static string array. |
michael@0 | 29 | */ |
michael@0 | 30 | |
michael@0 | 31 | class nsStaticCaseInsensitiveNameTable |
michael@0 | 32 | { |
michael@0 | 33 | public: |
michael@0 | 34 | enum { NOT_FOUND = -1 }; |
michael@0 | 35 | |
michael@0 | 36 | bool Init(const char* const aNames[], int32_t Count); |
michael@0 | 37 | int32_t Lookup(const nsACString& aName); |
michael@0 | 38 | int32_t Lookup(const nsAString& aName); |
michael@0 | 39 | const nsAFlatCString& GetStringValue(int32_t index); |
michael@0 | 40 | |
michael@0 | 41 | nsStaticCaseInsensitiveNameTable(); |
michael@0 | 42 | ~nsStaticCaseInsensitiveNameTable(); |
michael@0 | 43 | |
michael@0 | 44 | private: |
michael@0 | 45 | nsDependentCString* mNameArray; |
michael@0 | 46 | PLDHashTable mNameTable; |
michael@0 | 47 | nsDependentCString mNullStr; |
michael@0 | 48 | }; |
michael@0 | 49 | |
michael@0 | 50 | #endif /* nsStaticNameTable_h___ */ |