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 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
8 #include "GrSurface.h"
10 #include "SkBitmap.h"
11 #include "SkGr.h"
12 #include "SkImageEncoder.h"
13 #include <stdio.h>
15 void GrSurface::asImageInfo(SkImageInfo* info) const {
16 if (!GrPixelConfig2ColorType(this->config(), &info->fColorType)) {
17 sk_throw();
18 }
19 info->fWidth = this->width();
20 info->fHeight = this->height();
21 info->fAlphaType = kPremul_SkAlphaType;
22 }
24 bool GrSurface::savePixels(const char* filename) {
25 SkBitmap bm;
26 if (!bm.allocPixels(SkImageInfo::MakeN32Premul(this->width(),
27 this->height()))) {
28 return false;
29 }
31 bool result = readPixels(0, 0, this->width(), this->height(), kSkia8888_GrPixelConfig,
32 bm.getPixels());
33 if (!result) {
34 SkDebugf("------ failed to read pixels for %s\n", filename);
35 return false;
36 }
38 // remove any previous version of this file
39 remove(filename);
41 if (!SkImageEncoder::EncodeFile(filename, bm, SkImageEncoder::kPNG_Type, 100)) {
42 SkDebugf("------ failed to encode %s\n", filename);
43 remove(filename); // remove any partial file
44 return false;
45 }
47 return true;
48 }