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

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

Issue 9169052: Tweaks to PPB_VarArrayBuffer in preperation for taking out of Dev. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes based on reviews Created 8 years, 11 months 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/plugins/ppapi/host_array_buffer_var.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/host_array_buffer_var.cc
diff --git a/webkit/plugins/ppapi/host_array_buffer_var.cc b/webkit/plugins/ppapi/host_array_buffer_var.cc
index 248ff856235fb0de3c1bd0bc793986d191cbf2f4..e6612929b1e997ff7dd114ecf8e3ce9b849b78f5 100644
--- a/webkit/plugins/ppapi/host_array_buffer_var.cc
+++ b/webkit/plugins/ppapi/host_array_buffer_var.cc
@@ -25,6 +25,10 @@ void* HostArrayBufferVar::Map() {
return buffer_.data();
}
+void HostArrayBufferVar::Unmap() {
+ // We do not used shared memory on the host side. Nothing to do.
+}
+
uint32 HostArrayBufferVar::ByteLength() {
return buffer_.byteLength();
}
« no previous file with comments | « webkit/plugins/ppapi/host_array_buffer_var.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698