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 | From 2dd8c789fc4ad3b5323c2c29f3e982d185f5b5d9 Mon Sep 17 00:00:00 2001 |
michael@0 | 2 | From: George Wright <gw@gwright.org.uk> |
michael@0 | 3 | Date: Thu, 13 Sep 2012 22:33:38 -0400 |
michael@0 | 4 | Subject: [PATCH 1/9] Bug 777614 - Re-add our SkUserConfig.h r=nrc |
michael@0 | 5 | |
michael@0 | 6 | --- |
michael@0 | 7 | gfx/skia/include/config/SkUserConfig.h | 13 ++++++++++++- |
michael@0 | 8 | 1 file changed, 12 insertions(+), 1 deletion(-) |
michael@0 | 9 | |
michael@0 | 10 | diff --git a/gfx/skia/include/config/SkUserConfig.h b/gfx/skia/include/config/SkUserConfig.h |
michael@0 | 11 | index 353272c..fbfbfe0 100644 |
michael@0 | 12 | --- a/gfx/skia/include/config/SkUserConfig.h |
michael@0 | 13 | +++ b/gfx/skia/include/config/SkUserConfig.h |
michael@0 | 14 | @@ -184,5 +184,16 @@ |
michael@0 | 15 | directories from your include search path when you're not building the GPU |
michael@0 | 16 | backend. Defaults to 1 (build the GPU code). |
michael@0 | 17 | */ |
michael@0 | 18 | -//#define SK_SUPPORT_GPU 1 |
michael@0 | 19 | +#define SK_SUPPORT_GPU 0 |
michael@0 | 20 | + |
michael@0 | 21 | +/* Don't dither 32bit gradients, to match what the canvas test suite expects. |
michael@0 | 22 | + */ |
michael@0 | 23 | +#define SK_DISABLE_DITHER_32BIT_GRADIENT |
michael@0 | 24 | + |
michael@0 | 25 | +/* Don't include stdint.h on windows as it conflicts with our build system. |
michael@0 | 26 | + */ |
michael@0 | 27 | +#ifdef SK_BUILD_FOR_WIN32 |
michael@0 | 28 | + #define SK_IGNORE_STDINT_DOT_H |
michael@0 | 29 | +#endif |
michael@0 | 30 | + |
michael@0 | 31 | #endif |
michael@0 | 32 | -- |
michael@0 | 33 | 1.7.11.4 |
michael@0 | 34 |