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.
2 /*
3 * Copyright 2006 The Android Open Source Project
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
10 #include "SkTypes.h"
12 #ifdef SK_DEBUG
14 int8_t SkToS8(intmax_t x) {
15 SkASSERT((int8_t)x == x);
16 return (int8_t)x;
17 }
19 uint8_t SkToU8(uintmax_t x) {
20 SkASSERT((uint8_t)x == x);
21 return (uint8_t)x;
22 }
24 int16_t SkToS16(intmax_t x) {
25 SkASSERT((int16_t)x == x);
26 return (int16_t)x;
27 }
29 uint16_t SkToU16(uintmax_t x) {
30 SkASSERT((uint16_t)x == x);
31 return (uint16_t)x;
32 }
34 int32_t SkToS32(intmax_t x) {
35 SkASSERT((int32_t)x == x);
36 return (int32_t)x;
37 }
39 uint32_t SkToU32(uintmax_t x) {
40 SkASSERT((uint32_t)x == x);
41 return (uint32_t)x;
42 }
44 int SkToInt(intmax_t x) {
45 SkASSERT((int)x == x);
46 return (int)x;
47 }
49 unsigned SkToUInt(uintmax_t x) {
50 SkASSERT((unsigned)x == x);
51 return (unsigned)x;
52 }
54 size_t SkToSizeT(uintmax_t x) {
55 SkASSERT((size_t)x == x);
56 return (size_t)x;
57 }
59 #endif