Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(101)

Side by Side Diff: src/ports/SkPurgeableMemoryBlock_none.cpp

Issue 219133004: Purge SkPurgeableMemoryBlock. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Rebase Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/ports/SkPurgeableMemoryBlock_mac.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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 */
7
8 #include "SkPurgeableMemoryBlock.h"
9
10 bool SkPurgeableMemoryBlock::IsSupported() {
11 return false;
12 }
13
14 #ifdef SK_DEBUG
15 bool SkPurgeableMemoryBlock::PlatformSupportsPurgingAllUnpinnedBlocks() {
16 return false;
17 }
18
19 bool SkPurgeableMemoryBlock::PurgeAllUnpinnedBlocks() {
20 return false;
21 }
22
23 bool SkPurgeableMemoryBlock::purge() {
24 return false;
25 }
26 #endif
27
28 SkPurgeableMemoryBlock::SkPurgeableMemoryBlock(size_t size) {
29 SkASSERT(false);
30 }
31
32 SkPurgeableMemoryBlock::~SkPurgeableMemoryBlock() {
33 }
34
35 void* SkPurgeableMemoryBlock::pin(SkPurgeableMemoryBlock::PinResult*) {
36 return NULL;
37 }
38
39 void SkPurgeableMemoryBlock::unpin() {
40 }
OLDNEW
« no previous file with comments | « src/ports/SkPurgeableMemoryBlock_mac.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698