gfx/skia/trunk/src/utils/SkGatherPixelRefsAndRects.cpp

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

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 2014 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 "SkGatherPixelRefsAndRects.h"
     9 #include "SkNoSaveLayerCanvas.h"
    10 #include "SkPictureUtils.h"
    12 void SkPictureUtils::GatherPixelRefsAndRects(SkPicture* pict,
    13                                              SkPictureUtils::SkPixelRefContainer* prCont) {
    14     if (0 == pict->width() || 0 == pict->height()) {
    15         return ;
    16     }
    18     SkGatherPixelRefsAndRectsDevice device(pict->width(), pict->height(), prCont);
    19     SkNoSaveLayerCanvas canvas(&device);
    21     canvas.clipRect(SkRect::MakeWH(SkIntToScalar(pict->width()),
    22                                    SkIntToScalar(pict->height())),
    23                     SkRegion::kIntersect_Op, false);
    24     canvas.drawPicture(*pict);
    25 }

mercurial