summaryrefslogtreecommitdiffstats
path: root/chromium/webkit/renderer/compositor_bindings/web_external_bitmap_impl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/webkit/renderer/compositor_bindings/web_external_bitmap_impl.cc')
-rw-r--r--chromium/webkit/renderer/compositor_bindings/web_external_bitmap_impl.cc44
1 files changed, 0 insertions, 44 deletions
diff --git a/chromium/webkit/renderer/compositor_bindings/web_external_bitmap_impl.cc b/chromium/webkit/renderer/compositor_bindings/web_external_bitmap_impl.cc
deleted file mode 100644
index 5e97b579806..00000000000
--- a/chromium/webkit/renderer/compositor_bindings/web_external_bitmap_impl.cc
+++ /dev/null
@@ -1,44 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "webkit/renderer/compositor_bindings/web_external_bitmap_impl.h"
-
-#include "base/memory/shared_memory.h"
-
-namespace webkit {
-
-namespace {
-
-SharedMemoryAllocationFunction g_memory_allocator;
-
-} // namespace
-
-void SetSharedMemoryAllocationFunction(
- SharedMemoryAllocationFunction allocator) {
- g_memory_allocator = allocator;
-}
-
-WebExternalBitmapImpl::WebExternalBitmapImpl() {}
-
-WebExternalBitmapImpl::~WebExternalBitmapImpl() {}
-
-void WebExternalBitmapImpl::setSize(blink::WebSize size) {
- if (size != size_) {
- size_t byte_size = size.width * size.height * 4;
- shared_memory_ = g_memory_allocator(byte_size);
- if (shared_memory_)
- shared_memory_->Map(byte_size);
- size_ = size;
- }
-}
-
-blink::WebSize WebExternalBitmapImpl::size() {
- return size_;
-}
-
-uint8* WebExternalBitmapImpl::pixels() {
- return static_cast<uint8*>(shared_memory_->memory());
-}
-
-} // namespace webkit