Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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 }