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 | /* vim:set ts=2 sw=2 sts=2 et cindent: */ |
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 | #ifndef MainThreadUtils_h_ |
michael@0 | 8 | #define MainThreadUtils_h_ |
michael@0 | 9 | |
michael@0 | 10 | #include "nscore.h" |
michael@0 | 11 | #include "mozilla/threads/nsThreadIDs.h" |
michael@0 | 12 | |
michael@0 | 13 | class nsIThread; |
michael@0 | 14 | |
michael@0 | 15 | /** |
michael@0 | 16 | * Get a reference to the main thread. |
michael@0 | 17 | * |
michael@0 | 18 | * @param result |
michael@0 | 19 | * The resulting nsIThread object. |
michael@0 | 20 | */ |
michael@0 | 21 | extern NS_COM_GLUE NS_METHOD |
michael@0 | 22 | NS_GetMainThread(nsIThread **result); |
michael@0 | 23 | |
michael@0 | 24 | #if defined(MOZILLA_INTERNAL_API) && defined(XP_WIN) |
michael@0 | 25 | bool NS_IsMainThread(); |
michael@0 | 26 | #elif defined(MOZILLA_INTERNAL_API) && defined(NS_TLS) |
michael@0 | 27 | // This is defined in nsThreadManager.cpp and initialized to `Main` for the |
michael@0 | 28 | // main thread by nsThreadManager::Init. |
michael@0 | 29 | extern NS_TLS mozilla::threads::ID gTLSThreadID; |
michael@0 | 30 | #ifdef MOZ_ASAN |
michael@0 | 31 | // Temporary workaround, see bug 895845 |
michael@0 | 32 | MOZ_ASAN_BLACKLIST bool NS_IsMainThread(); |
michael@0 | 33 | #else |
michael@0 | 34 | inline |
michael@0 | 35 | bool NS_IsMainThread() |
michael@0 | 36 | { |
michael@0 | 37 | return gTLSThreadID == mozilla::threads::Main; |
michael@0 | 38 | } |
michael@0 | 39 | #endif |
michael@0 | 40 | #else |
michael@0 | 41 | /** |
michael@0 | 42 | * Test to see if the current thread is the main thread. |
michael@0 | 43 | * |
michael@0 | 44 | * @returns true if the current thread is the main thread, and false |
michael@0 | 45 | * otherwise. |
michael@0 | 46 | */ |
michael@0 | 47 | extern NS_COM_GLUE bool NS_IsMainThread(); |
michael@0 | 48 | #endif |
michael@0 | 49 | |
michael@0 | 50 | #endif // MainThreadUtils_h_ |