diff options
author | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-25 21:54:49 +0000 |
---|---|---|
committer | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-25 21:54:49 +0000 |
commit | 16b7b2781d20602e7b58eaaf23a3c6e6ac250a55 (patch) | |
tree | ced69d77194024d772e513a8d149e1a18cadcde6 /ppapi/proxy/ppb_buffer_proxy.h | |
parent | 16c10d7db132e781e6db49c26724006d06a54a35 (diff) | |
download | chromium_src-16b7b2781d20602e7b58eaaf23a3c6e6ac250a55.zip chromium_src-16b7b2781d20602e7b58eaaf23a3c6e6ac250a55.tar.gz chromium_src-16b7b2781d20602e7b58eaaf23a3c6e6ac250a55.tar.bz2 |
PPAPI/NaCl: Make ImageData for NaCl just use shared memory
BUG=116317
TEST=
TBR=ben@chromium.org
ben for ui/gfx OWNERS
Review URL: https://chromiumcodereview.appspot.com/10790063
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148427 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy/ppb_buffer_proxy.h')
-rw-r--r-- | ppapi/proxy/ppb_buffer_proxy.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ppapi/proxy/ppb_buffer_proxy.h b/ppapi/proxy/ppb_buffer_proxy.h index 08a2753..cc8f598 100644 --- a/ppapi/proxy/ppb_buffer_proxy.h +++ b/ppapi/proxy/ppb_buffer_proxy.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 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. @@ -36,7 +36,6 @@ class Buffer : public thunk::PPB_Buffer_API, public Resource { private: base::SharedMemory shm_; uint32_t size_; - void* mapped_data_; int map_count_; DISALLOW_COPY_AND_ASSIGN(Buffer); |