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

Unified Diff: content/renderer/pepper/host_var_tracker.cc

Issue 26564009: [PPAPI] It is now possible to pass filesystems from JavaScript to NaCl modules. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Cleanup after refactor. Created 7 years, 2 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: 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..7c70346175814973bf37b22730342bbf1bbbfbac 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(const IPC::Message& creation_message,
+ int pending_renderer_id,
+ int pending_browser_id,
+ PP_Instance instance) {
+ return VarTracker::MakeResourcePPVar(0);
raymes 2013/10/30 06:31:51 Should this be NOTREACHED?
Matt Giuca 2013/10/30 07:00:39 Well, it's technically valid to call this -- on th
+}
+
ppapi::ResourceVar* HostVarTracker::MakeResourceVar(PP_Resource pp_resource) {
return new HostResourceVar(pp_resource);
}

Powered by Google App Engine
This is Rietveld 408576698