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

Unified Diff: ppapi/proxy/plugin_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 | « ppapi/proxy/plugin_array_buffer_var.h ('k') | ppapi/shared_impl/ppb_var_shared.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/plugin_array_buffer_var.cc
diff --git a/ppapi/proxy/plugin_array_buffer_var.cc b/ppapi/proxy/plugin_array_buffer_var.cc
index d88ca7bd3f96d627941ffd254ac8117650a4aac6..cc943ba72daa124b0c8253fc43de492edd36495b 100644
--- a/ppapi/proxy/plugin_array_buffer_var.cc
+++ b/ppapi/proxy/plugin_array_buffer_var.cc
@@ -23,6 +23,10 @@ void* PluginArrayBufferVar::Map() {
return &(buffer_[0]);
}
+void PluginArrayBufferVar::Unmap() {
+ // We don't actually use shared memory yet, so do nothing.
+}
+
uint32 PluginArrayBufferVar::ByteLength() {
return buffer_.size();
}
« no previous file with comments | « ppapi/proxy/plugin_array_buffer_var.h ('k') | ppapi/shared_impl/ppb_var_shared.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698