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

Unified Diff: ppapi/proxy/host_var_serialization_rules.h

Issue 9139054: Revert 117399 - Make it possible to have 1 PpapiGlobals per thread. Update unit tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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
« no previous file with comments | « ppapi/proxy/host_dispatcher.cc ('k') | ppapi/proxy/host_var_serialization_rules.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/host_var_serialization_rules.h
===================================================================
--- ppapi/proxy/host_var_serialization_rules.h (revision 117413)
+++ ppapi/proxy/host_var_serialization_rules.h (working copy)
@@ -18,7 +18,8 @@
// Implementation of the VarSerializationRules interface for the host side.
class HostVarSerializationRules : public VarSerializationRules {
public:
- HostVarSerializationRules(PP_Module pp_module);
+ HostVarSerializationRules(const PPB_Var* var_interface,
+ PP_Module pp_module);
~HostVarSerializationRules();
// VarSerialization implementation.
@@ -39,6 +40,7 @@
// string object.
void VarToString(const PP_Var& var, std::string* str);
+ const PPB_Var* var_interface_;
PP_Module pp_module_;
DISALLOW_COPY_AND_ASSIGN(HostVarSerializationRules);
« no previous file with comments | « ppapi/proxy/host_dispatcher.cc ('k') | ppapi/proxy/host_var_serialization_rules.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698