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 2010 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 | #ifndef GrFontScaler_DEFINED |
michael@0 | 9 | #define GrFontScaler_DEFINED |
michael@0 | 10 | |
michael@0 | 11 | #include "GrGlyph.h" |
michael@0 | 12 | #include "GrKey.h" |
michael@0 | 13 | |
michael@0 | 14 | class SkPath; |
michael@0 | 15 | |
michael@0 | 16 | /** |
michael@0 | 17 | * This is a virtual base class which Gr's interface to the host platform's |
michael@0 | 18 | * font scaler. |
michael@0 | 19 | * |
michael@0 | 20 | * The client is responsible for subclassing, and instantiating this. The |
michael@0 | 21 | * instance is create for a specific font+size+matrix. |
michael@0 | 22 | */ |
michael@0 | 23 | class GrFontScaler : public SkRefCnt { |
michael@0 | 24 | public: |
michael@0 | 25 | SK_DECLARE_INST_COUNT(GrFontScaler) |
michael@0 | 26 | |
michael@0 | 27 | virtual const GrKey* getKey() = 0; |
michael@0 | 28 | virtual GrMaskFormat getMaskFormat() = 0; |
michael@0 | 29 | virtual bool getPackedGlyphBounds(GrGlyph::PackedID, SkIRect* bounds) = 0; |
michael@0 | 30 | virtual bool getPackedGlyphImage(GrGlyph::PackedID, int width, int height, |
michael@0 | 31 | int rowBytes, void* image) = 0; |
michael@0 | 32 | virtual bool getGlyphPath(uint16_t glyphID, SkPath*) = 0; |
michael@0 | 33 | |
michael@0 | 34 | private: |
michael@0 | 35 | typedef SkRefCnt INHERITED; |
michael@0 | 36 | }; |
michael@0 | 37 | |
michael@0 | 38 | #endif |