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 From 81ff1a8f5c2a7cc9e8b853101b995433a0c0fa37 Mon Sep 17 00:00:00 2001
2 From: Jacek Caban <jacek@codeweavers.com>
3 Date: Thu, 18 Oct 2012 15:25:08 +0200
4 Subject: [PATCH] Bug 803063 - Skia cross compilation for Windows fails on
5 case sensitive OS
7 ---
8 gfx/skia/src/core/SkAdvancedTypefaceMetrics.cpp | 2 +-
9 1 files changed, 1 insertions(+), 1 deletions(-)
11 diff --git a/gfx/skia/src/core/SkAdvancedTypefaceMetrics.cpp b/gfx/skia/src/core/SkAdvancedTypefaceMetrics.cpp
12 index 370616e..b647ada 100644
13 --- a/gfx/skia/src/core/SkAdvancedTypefaceMetrics.cpp
14 +++ b/gfx/skia/src/core/SkAdvancedTypefaceMetrics.cpp
15 @@ -13,7 +13,7 @@
16 SK_DEFINE_INST_COUNT(SkAdvancedTypefaceMetrics)
18 #if defined(SK_BUILD_FOR_WIN)
19 -#include <DWrite.h>
20 +#include <dwrite.h>
21 #endif
23 #if defined(SK_BUILD_FOR_UNIX) || defined(SK_BUILD_FOR_ANDROID)
24 --
25 1.7.8.6