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 | /* 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 nsGlobalWindowCommands_h__ |
michael@0 | 6 | #define nsGlobalWindowCommands_h__ |
michael@0 | 7 | |
michael@0 | 8 | #include "nscore.h" |
michael@0 | 9 | |
michael@0 | 10 | class nsIControllerCommandTable; |
michael@0 | 11 | |
michael@0 | 12 | class nsWindowCommandRegistration |
michael@0 | 13 | { |
michael@0 | 14 | public: |
michael@0 | 15 | static nsresult RegisterWindowCommands(nsIControllerCommandTable *ccm); |
michael@0 | 16 | }; |
michael@0 | 17 | |
michael@0 | 18 | |
michael@0 | 19 | // XXX find a better home for these |
michael@0 | 20 | #define NS_WINDOWCONTROLLER_CID \ |
michael@0 | 21 | { /* 7BD05C78-6A26-11D7-B16F-0003938A9D96 */ \ |
michael@0 | 22 | 0x7BD05C78, 0x6A26, 0x11D7, {0xB1, 0x6F, 0x00, 0x03, 0x93, 0x8A, 0x9D, 0x96} } |
michael@0 | 23 | |
michael@0 | 24 | #define NS_WINDOWCONTROLLER_CONTRACTID "@mozilla.org/dom/window-controller;1" |
michael@0 | 25 | |
michael@0 | 26 | #endif // nsGlobalWindowCommands_h__ |
michael@0 | 27 |