summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/skia/src/lazy/SkPurgeableMemoryBlock_common.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/skia/src/lazy/SkPurgeableMemoryBlock_common.cpp')
-rw-r--r--chromium/third_party/skia/src/lazy/SkPurgeableMemoryBlock_common.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/chromium/third_party/skia/src/lazy/SkPurgeableMemoryBlock_common.cpp b/chromium/third_party/skia/src/lazy/SkPurgeableMemoryBlock_common.cpp
deleted file mode 100644
index a549c46e264..00000000000
--- a/chromium/third_party/skia/src/lazy/SkPurgeableMemoryBlock_common.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
- * Copyright 2013 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#include "SkPurgeableMemoryBlock.h"
-
-SkPurgeableMemoryBlock* SkPurgeableMemoryBlock::Create(size_t size) {
- SkASSERT(IsSupported());
- if (!IsSupported()) {
- return NULL;
- }
- return SkNEW_ARGS(SkPurgeableMemoryBlock, (size));
-}