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

Unified Diff: ppapi/proxy/host_var_serialization_rules.cc

Issue 6334016: Refactor PPAPI proxy resource handling to maintain which host they came from,... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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/host_var_serialization_rules.cc
===================================================================
--- ppapi/proxy/host_var_serialization_rules.cc (revision 72517)
+++ ppapi/proxy/host_var_serialization_rules.cc (working copy)
@@ -62,7 +62,7 @@
}
PP_Var HostVarSerializationRules::BeginSendPassRef(const PP_Var& var,
- std::string* str_val) {
+ std::string* str_val) {
// See PluginVarSerialization::ReceivePassRef for an example. We don't need
// to do anything here other than convert the string.
if (var.type == PP_VARTYPE_STRING)
@@ -70,7 +70,8 @@
return var;
}
-void HostVarSerializationRules::EndSendPassRef(const PP_Var& var) {
+void HostVarSerializationRules::EndSendPassRef(const PP_Var& /* var */,
+ Dispatcher* /* dispatcher */) {
// See PluginVarSerialization::ReceivePassRef for an example. We don't need
// to do anything here.
}

Powered by Google App Engine
This is Rietveld 408576698