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.
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2 * vim: set ts=8 sts=4 et sw=4 tw=99:
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 // Specialized .h file to be used by both JS and C++ code.
9 #ifndef builtin_SelfHostingDefines_h
10 #define builtin_SelfHostingDefines_h
12 // Utility macros.
13 #define TO_INT32(x) ((x) | 0)
14 #define TO_UINT32(x) ((x) >>> 0)
15 #define IS_UINT32(x) ((x) >>> 0 === (x))
17 // Assertions.
18 #ifdef DEBUG
19 #define assert(b, info) if (!(b)) AssertionFailed(info)
20 #else
21 #define assert(b, info) // Elided assertion.
22 #endif
24 // Unforgeable versions of ARRAY.push(ELEMENT) and ARRAY.slice.
25 #define ARRAY_PUSH(ARRAY, ELEMENT) \
26 callFunction(std_Array_push, ARRAY, ELEMENT);
27 #define ARRAY_SLICE(ARRAY, ELEMENT) \
28 callFunction(std_Array_slice, ARRAY, ELEMENT);
30 // Property descriptor attributes.
31 #define ATTR_ENUMERABLE 0x01
32 #define ATTR_CONFIGURABLE 0x02
33 #define ATTR_WRITABLE 0x04
35 #define ATTR_NONENUMERABLE 0x08
36 #define ATTR_NONCONFIGURABLE 0x10
37 #define ATTR_NONWRITABLE 0x20
39 #endif