1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ppapi/proxy/plugin_array_buffer_var.h"
13 PluginArrayBufferVar::PluginArrayBufferVar(uint32 size_in_bytes
)
14 : buffer_(size_in_bytes
) {
17 PluginArrayBufferVar::~PluginArrayBufferVar() {
20 void* PluginArrayBufferVar::Map() {
26 void PluginArrayBufferVar::Unmap() {
27 // We don't actually use shared memory yet, so do nothing.
30 uint32
PluginArrayBufferVar::ByteLength() {
31 return buffer_
.size();