Index: ppapi/proxy/ppb_testing_proxy.cc |
diff --git a/ppapi/proxy/ppb_testing_proxy.cc b/ppapi/proxy/ppb_testing_proxy.cc |
index 0b29795f124f54f48396307cecd9939dac55b973..0dbab0be0635ca11f5a1f490251c7d55a5a2e111 100644 |
--- a/ppapi/proxy/ppb_testing_proxy.cc |
+++ b/ppapi/proxy/ppb_testing_proxy.cc |
@@ -127,6 +127,11 @@ void SetMinimumArrayBufferSizeForShmem(PP_Instance instance, |
API_ID_PPB_TESTING, threshold)); |
} |
+void RunV8GC(PP_Instance instance) { |
+ // TODO(raymes): Implement this if we need it. |
+ NOTIMPLEMENTED(); |
+} |
+ |
const PPB_Testing_Private testing_interface = { |
&ReadImageData, |
&RunMessageLoop, |
@@ -136,7 +141,8 @@ const PPB_Testing_Private testing_interface = { |
&SimulateInputEvent, |
&GetDocumentURL, |
&GetLiveVars, |
- &SetMinimumArrayBufferSizeForShmem |
+ &SetMinimumArrayBufferSizeForShmem, |
+ &RunV8GC |
}; |
} // namespace |