Chromium Code Reviews

Unified Diff: ppapi/proxy/ppb_testing_proxy.cc

Issue 400823004: gin (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
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

Powered by Google App Engine