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

Unified Diff: ppapi/api/dev/ppb_testing_dev.idl

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 | « no previous file | ppapi/c/dev/ppb_testing_dev.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/api/dev/ppb_testing_dev.idl
diff --git a/ppapi/api/dev/ppb_testing_dev.idl b/ppapi/api/dev/ppb_testing_dev.idl
index 6c0b22b88285886f06323706b930958160975eea..c114db00e29ac783dd542f4ff6395eade33b4d2a 100644
--- a/ppapi/api/dev/ppb_testing_dev.idl
+++ b/ppapi/api/dev/ppb_testing_dev.idl
@@ -13,7 +13,8 @@ label Chrome {
M14 = 0.7,
M15 = 0.8,
M17 = 0.9,
- M18 = 0.91
+ M18 = 0.91,
+ M28 = 0.92
};
interface PPB_Testing_Dev {
@@ -127,4 +128,15 @@ interface PPB_Testing_Dev {
[version=0.91]
uint32_t GetLiveVars([size_as=array_size] PP_Var[] live_vars,
[in] uint32_t array_size);
+
+ /**
+ * Sets the threshold size at which point we switch from transmitting
+ * array buffers in IPC messages to using shared memory. This is only used
+ * for testing purposes where we need to transmit small buffers using shmem
+ * (in order to have fast tests). Passing a value of 0 resets the threshold
+ * to its default. The threshold is in bytes.
+ */
+ [version=0.92]
+ void SetMinimumArrayBufferSizeForShmem([in] PP_Instance instance,
+ [in] uint32_t threshold);
};
« no previous file with comments | « no previous file | ppapi/c/dev/ppb_testing_dev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698