summaryrefslogtreecommitdiffstats
path: root/ppapi/proxy/var_serialization_rules.h
diff options
context:
space:
mode:
Diffstat (limited to 'ppapi/proxy/var_serialization_rules.h')
-rw-r--r--ppapi/proxy/var_serialization_rules.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/ppapi/proxy/var_serialization_rules.h b/ppapi/proxy/var_serialization_rules.h
index f18b6f0..38698ae 100644
--- a/ppapi/proxy/var_serialization_rules.h
+++ b/ppapi/proxy/var_serialization_rules.h
@@ -73,10 +73,11 @@ class VarSerializationRules {
// Prepares a var to be sent to the remote side. One local reference will
// be passed to the remote side. Call Begin* before doing the send and End*
// after doing the send. See SendCallerOwned for a description of the string.
+ //
// The return value from BeginSendPassRef will be the var valid for the host
- // process.
+ // process. This same value must be passed to EndSendPassRef.
virtual PP_Var BeginSendPassRef(const PP_Var& var, std::string* str_val) = 0;
- virtual void EndSendPassRef(const PP_Var& var) = 0;
+ virtual void EndSendPassRef(const PP_Var& var, Dispatcher* dispatcher) = 0;
// ---------------------------------------------------------------------------