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 | /* |
michael@0 | 3 | * Copyright 2013 Google Inc. |
michael@0 | 4 | * |
michael@0 | 5 | * Use of this source code is governed by a BSD-style license that can be |
michael@0 | 6 | * found in the LICENSE file. |
michael@0 | 7 | */ |
michael@0 | 8 | |
michael@0 | 9 | #ifndef GrTest_DEFINED |
michael@0 | 10 | #define GrTest_DEFINED |
michael@0 | 11 | |
michael@0 | 12 | #include "GrContext.h" |
michael@0 | 13 | #include "GrDrawTarget.h" |
michael@0 | 14 | |
michael@0 | 15 | /** Allows a test to temporarily draw to a GrDrawTarget owned by a GrContext. Tests that use this |
michael@0 | 16 | should be careful not to mix using the GrDrawTarget directly and drawing via SkCanvas or |
michael@0 | 17 | GrContext. In the future this object may provide some guards to prevent this. */ |
michael@0 | 18 | class GrTestTarget { |
michael@0 | 19 | public: |
michael@0 | 20 | GrTestTarget() {}; |
michael@0 | 21 | |
michael@0 | 22 | void init(GrContext*, GrDrawTarget*); |
michael@0 | 23 | |
michael@0 | 24 | GrDrawTarget* target() { return fDrawTarget.get(); } |
michael@0 | 25 | |
michael@0 | 26 | private: |
michael@0 | 27 | SkTLazy<GrDrawTarget::AutoStateRestore> fASR; |
michael@0 | 28 | SkTLazy<GrDrawTarget::AutoClipRestore> fACR; |
michael@0 | 29 | SkTLazy<GrDrawTarget::AutoGeometryPush> fAGP; |
michael@0 | 30 | |
michael@0 | 31 | SkAutoTUnref<GrDrawTarget> fDrawTarget; |
michael@0 | 32 | SkAutoTUnref<GrContext> fContext; |
michael@0 | 33 | }; |
michael@0 | 34 | |
michael@0 | 35 | #endif |