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

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

Issue 14208016: Hookup RawVarData to SerializedVar (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 8 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/tests/test_post_message.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/plugin_module.cc
diff --git a/webkit/plugins/ppapi/plugin_module.cc b/webkit/plugins/ppapi/plugin_module.cc
index 0325c6017b8e5fd5f23e4a7018f334fe75354f2a..654dcf5a5eeaf5d8c4a36da1683000f8457dddc1 100644
--- a/webkit/plugins/ppapi/plugin_module.cc
+++ b/webkit/plugins/ppapi/plugin_module.cc
@@ -260,6 +260,11 @@ uint32_t GetLiveVars(PP_Var live_vars[], uint32_t array_size) {
return vars.size();
}
+void SetMinimumArrayBufferSizeForShmem(PP_Instance /*instance*/,
+ uint32_t /*threshold*/) {
+ // Does nothing. Not needed in-process.
+}
+
const PPB_Testing_Dev testing_interface = {
&ReadImageData,
&RunMessageLoop,
@@ -268,7 +273,8 @@ const PPB_Testing_Dev testing_interface = {
&IsOutOfProcess,
&SimulateInputEvent,
&GetDocumentURL,
- &GetLiveVars
+ &GetLiveVars,
+ &SetMinimumArrayBufferSizeForShmem
};
// GetInterface ----------------------------------------------------------------
« no previous file with comments | « ppapi/tests/test_post_message.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698