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.
1 //
2 // Copyright (c) 2012 The ANGLE Project Authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file.
5 //
7 // ShaderExecutable.h: Defines a renderer-agnostic class to contain shader
8 // executable implementation details.
10 #ifndef LIBGLESV2_RENDERER_SHADEREXECUTABLE_H_
11 #define LIBGLESV2_RENDERER_SHADEREXECUTABLE_H_
13 #include "common/angleutils.h"
15 namespace rx
16 {
18 class ShaderExecutable
19 {
20 public:
21 ShaderExecutable(const void *function, size_t length) : mLength(length)
22 {
23 mFunction = new char[length];
24 memcpy(mFunction, function, length);
25 }
27 virtual ~ShaderExecutable()
28 {
29 delete[] mFunction;
30 }
32 void *getFunction() const
33 {
34 return mFunction;
35 }
37 size_t getLength() const
38 {
39 return mLength;
40 }
42 private:
43 DISALLOW_COPY_AND_ASSIGN(ShaderExecutable);
45 void *mFunction;
46 const size_t mLength;
47 };
49 }
51 #endif // LIBGLESV2_RENDERER_SHADEREXECUTABLE9_H_