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

Unified Diff: ppapi/shared_impl/test_globals.h

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: ppapi/shared_impl/test_globals.h
diff --git a/ppapi/shared_impl/test_globals.h b/ppapi/shared_impl/test_globals.h
index 36ed829a78289eaf6939d7df2d9c2ddf5cdfaccf..eb8bed9cbb76c6e81c82e35a0d891917119d7b6e 100644
--- a/ppapi/shared_impl/test_globals.h
+++ b/ppapi/shared_impl/test_globals.h
@@ -18,6 +18,12 @@ class TestVarTracker : public VarTracker {
public:
TestVarTracker() : VarTracker(THREAD_SAFE) {}
virtual ~TestVarTracker() {}
+ virtual PP_Var MakeResourcePPVar(const IPC::Message& creation_message,
+ int pending_renderer_id,
+ int pending_browser_id,
+ PP_Instance instance) OVERRIDE {
+ return PP_MakeNull();
+ }
virtual ResourceVar* MakeResourceVar(PP_Resource pp_resource) OVERRIDE {
return NULL;
}

Powered by Google App Engine
This is Rietveld 408576698