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 Index: gfx/skia/include/core/SkPreConfig.h
2 ===================================================================
3 --- gfx/skia/include/core/SkPreConfig.h (revision 6724)
4 +++ gfx/skia/include/core/SkPreConfig.h (working copy)
5 @@ -94,7 +94,8 @@
6 //////////////////////////////////////////////////////////////////////
8 #if !defined(SK_CPU_BENDIAN) && !defined(SK_CPU_LENDIAN)
9 - #if defined (__ppc__) || defined(__ppc64__)
10 + #if defined (__ppc__) || defined(__PPC__) || defined(__ppc64__) \
11 + || defined(__PPC64__)
12 #define SK_CPU_BENDIAN
13 #else
14 #define SK_CPU_LENDIAN