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

Unified Diff: ppapi/proxy/ppb_testing_proxy.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/proxy/ppb_testing_proxy.h ('k') | ppapi/proxy/raw_var_data.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppb_testing_proxy.cc
diff --git a/ppapi/proxy/ppb_testing_proxy.cc b/ppapi/proxy/ppb_testing_proxy.cc
index 167a91e843bb09789a1fcafe48a44d53668d3912..6cdf59883077deca0c95a93a392bfc3035fd9b88 100644
--- a/ppapi/proxy/ppb_testing_proxy.cc
+++ b/ppapi/proxy/ppb_testing_proxy.cc
@@ -114,6 +114,18 @@ uint32_t GetLiveVars(PP_Var live_vars[], uint32_t array_size) {
return vars.size();
}
+void SetMinimumArrayBufferSizeForShmem(PP_Instance instance,
+ uint32_t threshold) {
+ ProxyAutoLock lock;
+ RawVarDataGraph::SetMinimumArrayBufferSizeForShmemForTest(threshold);
+ PluginDispatcher* dispatcher = PluginDispatcher::GetForInstance(instance);
+ if (!dispatcher)
+ return;
+ dispatcher->Send(
+ new PpapiHostMsg_PPBTesting_SetMinimumArrayBufferSizeForShmem(
+ API_ID_PPB_TESTING, threshold));
+}
+
const PPB_Testing_Dev testing_interface = {
&ReadImageData,
&RunMessageLoop,
@@ -122,7 +134,8 @@ const PPB_Testing_Dev testing_interface = {
&IsOutOfProcess,
&SimulateInputEvent,
&GetDocumentURL,
- &GetLiveVars
+ &GetLiveVars,
+ &SetMinimumArrayBufferSizeForShmem
};
InterfaceProxy* CreateTestingProxy(Dispatcher* dispatcher) {
@@ -167,6 +180,9 @@ bool PPB_Testing_Proxy::OnMessageReceived(const IPC::Message& msg) {
OnMsgGetLiveObjectsForInstance)
IPC_MESSAGE_HANDLER(PpapiHostMsg_PPBTesting_SimulateInputEvent,
OnMsgSimulateInputEvent)
+ IPC_MESSAGE_HANDLER(
+ PpapiHostMsg_PPBTesting_SetMinimumArrayBufferSizeForShmem,
+ OnMsgSetMinimumArrayBufferSizeForShmem)
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
return handled;
@@ -203,5 +219,10 @@ void PPB_Testing_Proxy::OnMsgSimulateInputEvent(
input_event_impl->pp_resource());
}
+void PPB_Testing_Proxy::OnMsgSetMinimumArrayBufferSizeForShmem(
+ uint32_t threshold) {
+ RawVarDataGraph::SetMinimumArrayBufferSizeForShmemForTest(threshold);
+}
+
} // namespace proxy
} // namespace ppapi
« no previous file with comments | « ppapi/proxy/ppb_testing_proxy.h ('k') | ppapi/proxy/raw_var_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698