| 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..63eb7bef5fc39c501725710925c9df81400fa1f5 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 threshhold) {
|
| + // 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 ----------------------------------------------------------------
|
|
|