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 2011 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 | #ifndef SkOSWindow_iOS_DEFINED |
michael@0 | 9 | #define SkOSWindow_iOS_DEFINED |
michael@0 | 10 | |
michael@0 | 11 | #include "SkWindow.h" |
michael@0 | 12 | |
michael@0 | 13 | class SkOSWindow : public SkWindow { |
michael@0 | 14 | public: |
michael@0 | 15 | SkOSWindow(void* hwnd); |
michael@0 | 16 | ~SkOSWindow(); |
michael@0 | 17 | void* getHWND() const { return fHWND; } |
michael@0 | 18 | |
michael@0 | 19 | enum SkBackEndTypes { |
michael@0 | 20 | kNone_BackEndType, |
michael@0 | 21 | kNativeGL_BackEndType, |
michael@0 | 22 | }; |
michael@0 | 23 | |
michael@0 | 24 | struct AttachmentInfo { |
michael@0 | 25 | int fSampleCount; |
michael@0 | 26 | int fStencilBits; |
michael@0 | 27 | }; |
michael@0 | 28 | |
michael@0 | 29 | void detach(); |
michael@0 | 30 | bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo*); |
michael@0 | 31 | void present(); |
michael@0 | 32 | |
michael@0 | 33 | protected: |
michael@0 | 34 | // overrides from SkEventSink |
michael@0 | 35 | virtual bool onEvent(const SkEvent& evt); |
michael@0 | 36 | // overrides from SkWindow |
michael@0 | 37 | virtual void onHandleInval(const SkIRect&); |
michael@0 | 38 | // overrides from SkView |
michael@0 | 39 | virtual void onAddMenu(const SkOSMenu*); |
michael@0 | 40 | virtual void onUpdateMenu(SkOSMenu*); |
michael@0 | 41 | virtual void onSetTitle(const char[]); |
michael@0 | 42 | |
michael@0 | 43 | private: |
michael@0 | 44 | void* fHWND; |
michael@0 | 45 | bool fInvalEventIsPending; |
michael@0 | 46 | void* fNotifier; |
michael@0 | 47 | typedef SkWindow INHERITED; |
michael@0 | 48 | }; |
michael@0 | 49 | |
michael@0 | 50 | #endif |