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 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8 #include "SkPictureFlat.h"
10 #include "SkChecksum.h"
11 #include "SkColorFilter.h"
12 #include "SkDrawLooper.h"
13 #include "SkMaskFilter.h"
14 #include "SkRasterizer.h"
15 #include "SkShader.h"
16 #include "SkTypeface.h"
17 #include "SkXfermode.h"
19 ///////////////////////////////////////////////////////////////////////////////
21 SkTypefacePlayback::SkTypefacePlayback() : fCount(0), fArray(NULL) {}
23 SkTypefacePlayback::~SkTypefacePlayback() {
24 this->reset(NULL);
25 }
27 void SkTypefacePlayback::reset(const SkRefCntSet* rec) {
28 for (int i = 0; i < fCount; i++) {
29 SkASSERT(fArray[i]);
30 fArray[i]->unref();
31 }
32 SkDELETE_ARRAY(fArray);
34 if (rec!= NULL && rec->count() > 0) {
35 fCount = rec->count();
36 fArray = SkNEW_ARRAY(SkRefCnt*, fCount);
37 rec->copyToArray(fArray);
38 for (int i = 0; i < fCount; i++) {
39 fArray[i]->ref();
40 }
41 } else {
42 fCount = 0;
43 fArray = NULL;
44 }
45 }
47 void SkTypefacePlayback::setCount(int count) {
48 this->reset(NULL);
50 fCount = count;
51 fArray = SkNEW_ARRAY(SkRefCnt*, count);
52 sk_bzero(fArray, count * sizeof(SkRefCnt*));
53 }
55 SkRefCnt* SkTypefacePlayback::set(int index, SkRefCnt* obj) {
56 SkASSERT((unsigned)index < (unsigned)fCount);
57 SkRefCnt_SafeAssign(fArray[index], obj);
58 return obj;
59 }
61 ///////////////////////////////////////////////////////////////////////////////
63 SkFlatController::SkFlatController(uint32_t writeBufferFlags)
64 : fBitmapHeap(NULL)
65 , fTypefaceSet(NULL)
66 , fTypefacePlayback(NULL)
67 , fFactorySet(NULL)
68 , fWriteBufferFlags(writeBufferFlags) {}
70 SkFlatController::~SkFlatController() {
71 SkSafeUnref(fBitmapHeap);
72 SkSafeUnref(fTypefaceSet);
73 SkSafeUnref(fFactorySet);
74 }
76 void SkFlatController::setBitmapHeap(SkBitmapHeap* heap) {
77 SkRefCnt_SafeAssign(fBitmapHeap, heap);
78 }
80 void SkFlatController::setTypefaceSet(SkRefCntSet *set) {
81 SkRefCnt_SafeAssign(fTypefaceSet, set);
82 }
84 void SkFlatController::setTypefacePlayback(SkTypefacePlayback* playback) {
85 fTypefacePlayback = playback;
86 }
88 SkNamedFactorySet* SkFlatController::setNamedFactorySet(SkNamedFactorySet* set) {
89 SkRefCnt_SafeAssign(fFactorySet, set);
90 return set;
91 }