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 2006 The Android Open Source Project |
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 SkOSWindow_MacCocoa_DEFINED |
michael@0 | 10 | #define SkOSWindow_MacCocoa_DEFINED |
michael@0 | 11 | |
michael@0 | 12 | #include "SkWindow.h" |
michael@0 | 13 | |
michael@0 | 14 | class SkOSWindow : public SkWindow { |
michael@0 | 15 | public: |
michael@0 | 16 | SkOSWindow(void* hwnd); |
michael@0 | 17 | ~SkOSWindow(); |
michael@0 | 18 | void* getHWND() const { return fHWND; } |
michael@0 | 19 | |
michael@0 | 20 | virtual bool onDispatchClick(int x, int y, Click::State state, |
michael@0 | 21 | void* owner, unsigned modi); |
michael@0 | 22 | enum SkBackEndTypes { |
michael@0 | 23 | kNone_BackEndType, |
michael@0 | 24 | #if SK_SUPPORT_GPU |
michael@0 | 25 | kNativeGL_BackEndType, |
michael@0 | 26 | #endif |
michael@0 | 27 | }; |
michael@0 | 28 | |
michael@0 | 29 | struct AttachmentInfo { |
michael@0 | 30 | int fSampleCount; |
michael@0 | 31 | int fStencilBits; |
michael@0 | 32 | }; |
michael@0 | 33 | |
michael@0 | 34 | void detach(); |
michael@0 | 35 | bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo*); |
michael@0 | 36 | void present(); |
michael@0 | 37 | |
michael@0 | 38 | protected: |
michael@0 | 39 | // overrides from SkEventSink |
michael@0 | 40 | virtual bool onEvent(const SkEvent& evt); |
michael@0 | 41 | // overrides from SkWindow |
michael@0 | 42 | virtual void onHandleInval(const SkIRect&); |
michael@0 | 43 | // overrides from SkView |
michael@0 | 44 | virtual void onAddMenu(const SkOSMenu*); |
michael@0 | 45 | virtual void onUpdateMenu(const SkOSMenu*); |
michael@0 | 46 | virtual void onSetTitle(const char[]); |
michael@0 | 47 | |
michael@0 | 48 | private: |
michael@0 | 49 | void* fHWND; |
michael@0 | 50 | bool fInvalEventIsPending; |
michael@0 | 51 | void* fNotifier; |
michael@0 | 52 | #if SK_SUPPORT_GPU |
michael@0 | 53 | void* fGLContext; |
michael@0 | 54 | #endif |
michael@0 | 55 | typedef SkWindow INHERITED; |
michael@0 | 56 | }; |
michael@0 | 57 | |
michael@0 | 58 | #endif |