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 (c) 2012 The ANGLE Project Authors. All rights reserved. |
michael@0 | 3 | // Use of this source code is governed by a BSD-style license that can be |
michael@0 | 4 | // found in the LICENSE file. |
michael@0 | 5 | // |
michael@0 | 6 | |
michael@0 | 7 | // RenderTarget.h: Defines an abstract wrapper class to manage IDirect3DSurface9 |
michael@0 | 8 | // and ID3D11View objects belonging to renderbuffers. |
michael@0 | 9 | |
michael@0 | 10 | #ifndef LIBGLESV2_RENDERER_RENDERTARGET_H_ |
michael@0 | 11 | #define LIBGLESV2_RENDERER_RENDERTARGET_H_ |
michael@0 | 12 | |
michael@0 | 13 | #include "common/angleutils.h" |
michael@0 | 14 | |
michael@0 | 15 | namespace rx |
michael@0 | 16 | { |
michael@0 | 17 | class RenderTarget |
michael@0 | 18 | { |
michael@0 | 19 | public: |
michael@0 | 20 | RenderTarget() |
michael@0 | 21 | { |
michael@0 | 22 | mWidth = 0; |
michael@0 | 23 | mHeight = 0; |
michael@0 | 24 | mInternalFormat = GL_NONE; |
michael@0 | 25 | mActualFormat = GL_NONE; |
michael@0 | 26 | mSamples = 0; |
michael@0 | 27 | } |
michael@0 | 28 | |
michael@0 | 29 | virtual ~RenderTarget() {}; |
michael@0 | 30 | |
michael@0 | 31 | GLsizei getWidth() { return mWidth; } |
michael@0 | 32 | GLsizei getHeight() { return mHeight; } |
michael@0 | 33 | GLenum getInternalFormat() { return mInternalFormat; } |
michael@0 | 34 | GLenum getActualFormat() { return mActualFormat; } |
michael@0 | 35 | GLsizei getSamples() { return mSamples; } |
michael@0 | 36 | |
michael@0 | 37 | struct Desc { |
michael@0 | 38 | GLsizei width; |
michael@0 | 39 | GLsizei height; |
michael@0 | 40 | GLenum format; |
michael@0 | 41 | }; |
michael@0 | 42 | |
michael@0 | 43 | protected: |
michael@0 | 44 | GLsizei mWidth; |
michael@0 | 45 | GLsizei mHeight; |
michael@0 | 46 | GLenum mInternalFormat; |
michael@0 | 47 | GLenum mActualFormat; |
michael@0 | 48 | GLsizei mSamples; |
michael@0 | 49 | |
michael@0 | 50 | private: |
michael@0 | 51 | DISALLOW_COPY_AND_ASSIGN(RenderTarget); |
michael@0 | 52 | }; |
michael@0 | 53 | |
michael@0 | 54 | } |
michael@0 | 55 | |
michael@0 | 56 | #endif // LIBGLESV2_RENDERTARGET_H_ |