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

Unified Diff: webkit/plugins/ppapi/host_array_buffer_var.h

Issue 8930010: Implement in-process PPB_VarArrayBuffer_Dev. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 9 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/glue/webkit_glue.gypi ('k') | webkit/plugins/ppapi/host_array_buffer_var.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/host_array_buffer_var.h
diff --git a/webkit/plugins/ppapi/host_array_buffer_var.h b/webkit/plugins/ppapi/host_array_buffer_var.h
new file mode 100644
index 0000000000000000000000000000000000000000..aaccb34b261e36f65a7f7b8e30dc183040ee66b5
--- /dev/null
+++ b/webkit/plugins/ppapi/host_array_buffer_var.h
@@ -0,0 +1,36 @@
+// Copyright (c) 2011 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.
+
+#ifndef PPAPI_WEBKIT_PLUGINS_PPAPI_HOST_ARRAY_BUFFER_VAR_H_
+#define PPAPI_WEBKIT_PLUGINS_PPAPI_HOST_ARRAY_BUFFER_VAR_H_
+
+#include "ppapi/shared_impl/var.h"
+#include "third_party/WebKit/Source/WebKit/chromium/public/WebArrayBuffer.h"
+
+namespace webkit {
+namespace ppapi {
+
+// Represents a host-side ArrayBufferVar.
+class HostArrayBufferVar : public ::ppapi::ArrayBufferVar {
+ public:
+ explicit HostArrayBufferVar(uint32 size_in_bytes);
+ explicit HostArrayBufferVar(const WebKit::WebArrayBuffer& buffer);
+ virtual ~HostArrayBufferVar();
+
+ // ArrayBufferVar implementation.
+ virtual void* Map() OVERRIDE;
+ virtual uint32 ByteLength() OVERRIDE;
+
+ WebKit::WebArrayBuffer& webkit_buffer() { return buffer_; }
+
+ private:
+ WebKit::WebArrayBuffer buffer_;
+
+ DISALLOW_COPY_AND_ASSIGN(HostArrayBufferVar);
+};
+
+} // namespace ppapi
+} // namespace webkit
+
+#endif // PPAPI_WEBKIT_PLUGINS_PPAPI_HOST_ARRAY_BUFFER_VAR_H_
« no previous file with comments | « webkit/glue/webkit_glue.gypi ('k') | webkit/plugins/ppapi/host_array_buffer_var.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698