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

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, 4 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
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
« no previous file with comments | « ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c ('k') | ppapi/proxy/ppp_instance_private_proxy_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698