gfx/skia/trunk/src/ports/SkPurgeableMemoryBlock_none.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 2013 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 "SkPurgeableMemoryBlock.h"
    10 bool SkPurgeableMemoryBlock::IsSupported() {
    11     return false;
    12 }
    14 #ifdef SK_DEBUG
    15 bool SkPurgeableMemoryBlock::PlatformSupportsPurgingAllUnpinnedBlocks() {
    16     return false;
    17 }
    19 bool SkPurgeableMemoryBlock::PurgeAllUnpinnedBlocks() {
    20     return false;
    21 }
    23 bool SkPurgeableMemoryBlock::purge() {
    24     return false;
    25 }
    26 #endif
    28 SkPurgeableMemoryBlock::SkPurgeableMemoryBlock(size_t size) {
    29     SkASSERT(false);
    30 }
    32 SkPurgeableMemoryBlock::~SkPurgeableMemoryBlock() {
    33 }
    35 void* SkPurgeableMemoryBlock::pin(SkPurgeableMemoryBlock::PinResult*) {
    36     return NULL;
    37 }
    39 void SkPurgeableMemoryBlock::unpin() {
    40 }

mercurial