gfx/skia/trunk/include/effects/SkPixelXorXfermode.h

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 2007 The Android Open Source Project
     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 #ifndef SkPixelXorXfermode_DEFINED
     9 #define SkPixelXorXfermode_DEFINED
    11 #include "SkXfermode.h"
    13 /** SkPixelXorXfermode implements a simple pixel xor (op ^ src ^ dst).
    14     This transformation does not follow premultiplied conventions, therefore
    15     this proc *always* returns an opaque color (alpha == 255). Thus it is
    16     not really usefull for operating on blended colors.
    17 */
    18 class SK_API SkPixelXorXfermode : public SkXfermode {
    19 public:
    20     static SkPixelXorXfermode* Create(SkColor opColor) {
    21         return SkNEW_ARGS(SkPixelXorXfermode, (opColor));
    22     }
    24     SK_TO_STRING_OVERRIDE()
    25     SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkPixelXorXfermode)
    27 protected:
    28     SkPixelXorXfermode(SkReadBuffer& rb);
    29     virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE;
    31     // override from SkXfermode
    32     virtual SkPMColor xferColor(SkPMColor src, SkPMColor dst) const;
    34 #ifdef SK_SUPPORT_LEGACY_PUBLICEFFECTCONSTRUCTORS
    35 public:
    36 #endif
    37     SkPixelXorXfermode(SkColor opColor) : fOpColor(opColor) {}
    39 private:
    40     SkColor fOpColor;
    42     typedef SkXfermode INHERITED;
    43 };
    45 #endif

mercurial