Index: ppapi/proxy/ppb_testing_proxy.cc |
diff --git a/ppapi/proxy/ppb_testing_proxy.cc b/ppapi/proxy/ppb_testing_proxy.cc |
index 942521c6824002e82b641629b3bdade8a4689bd7..564f68f5d8bbc734ee084ca2449a46077ba6cc17 100644 |
--- a/ppapi/proxy/ppb_testing_proxy.cc |
+++ b/ppapi/proxy/ppb_testing_proxy.cc |
@@ -63,11 +63,16 @@ uint32_t GetLiveObjectsForInstance(PP_Instance instance_id) { |
return result; |
} |
+PP_Bool IsOutOfProcess() { |
+ return PP_TRUE; |
+} |
+ |
const PPB_Testing_Dev testing_interface = { |
&ReadImageData, |
&RunMessageLoop, |
&QuitMessageLoop, |
- &GetLiveObjectsForInstance |
+ &GetLiveObjectsForInstance, |
+ &IsOutOfProcess |
}; |
InterfaceProxy* CreateTestingProxy(Dispatcher* dispatcher, |