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 | /* |
michael@0 | 2 | * Copyright 2012 Google Inc. |
michael@0 | 3 | * |
michael@0 | 4 | * Use of this source code is governed by a BSD-style license that can be |
michael@0 | 5 | * found in the LICENSE file. |
michael@0 | 6 | */ |
michael@0 | 7 | |
michael@0 | 8 | #include "GrPath.h" |
michael@0 | 9 | |
michael@0 | 10 | GrResourceKey GrPath::ComputeKey(const SkPath& path, const SkStrokeRec& stroke) { |
michael@0 | 11 | static const GrResourceKey::ResourceType gPathResourceType = GrResourceKey::GenerateResourceType(); |
michael@0 | 12 | static const GrCacheID::Domain gPathDomain = GrCacheID::GenerateDomain(); |
michael@0 | 13 | |
michael@0 | 14 | GrCacheID::Key key; |
michael@0 | 15 | uint32_t* keyData = key.fData32; |
michael@0 | 16 | keyData[0] = path.getGenerationID(); |
michael@0 | 17 | |
michael@0 | 18 | SK_COMPILE_ASSERT(SkPaint::kJoinCount <= 3, cap_shift_will_be_wrong); |
michael@0 | 19 | keyData[1] = stroke.needToApply(); |
michael@0 | 20 | if (0 != keyData[1]) { |
michael@0 | 21 | keyData[1] |= stroke.getJoin() << 1; |
michael@0 | 22 | keyData[1] |= stroke.getCap() << 3; |
michael@0 | 23 | keyData[2] = static_cast<uint32_t>(stroke.getMiter()); |
michael@0 | 24 | keyData[3] = static_cast<uint32_t>(stroke.getWidth()); |
michael@0 | 25 | } else { |
michael@0 | 26 | keyData[2] = 0; |
michael@0 | 27 | keyData[3] = 0; |
michael@0 | 28 | } |
michael@0 | 29 | |
michael@0 | 30 | return GrResourceKey(GrCacheID(gPathDomain, key), gPathResourceType, 0); |
michael@0 | 31 | } |