Chromium Code Reviews| Index: content/renderer/pepper/host_var_tracker.cc |
| diff --git a/content/renderer/pepper/host_var_tracker.cc b/content/renderer/pepper/host_var_tracker.cc |
| index ed67dbaa616b0487a2e512d407e0d5e68a4f4c94..3ee4fb47309bd721e7e21d13bc7994fd045b0399 100644 |
| --- a/content/renderer/pepper/host_var_tracker.cc |
| +++ b/content/renderer/pepper/host_var_tracker.cc |
| @@ -103,6 +103,13 @@ int HostVarTracker::GetLiveNPObjectVarsForInstance(PP_Instance instance) const { |
| return static_cast<int>(found->second->size()); |
| } |
| +PP_Var HostVarTracker::MakeResourcePPVar(PP_Instance instance, |
| + const IPC::Message& creation_message, |
| + int pending_renderer_id, |
| + int pending_browser_id) { |
| + return VarTracker::MakeResourcePPVar(0); |
|
dmichael (off chromium)
2013/10/30 17:47:27
I *think* I have an idea what's going on, but it l
Matt Giuca
2013/10/30 23:13:54
Done.
|
| +} |
| + |
| ppapi::ResourceVar* HostVarTracker::MakeResourceVar(PP_Resource pp_resource) { |
| return new HostResourceVar(pp_resource); |
| } |