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

Unified Diff: ppapi/shared_impl/test_globals.h

Issue 18063005: Do PPB_FileIO Query and Read in the plugin process. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 7 years, 5 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/ppapi_messages.h ('k') | ppapi/shared_impl/test_globals.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/shared_impl/test_globals.h
diff --git a/ppapi/shared_impl/test_globals.h b/ppapi/shared_impl/test_globals.h
index 082af34b26c2de457cca0c9f2fb0d82351bfff6a..c2780c3fa418ec1e96c33070a7f14955314493b3 100644
--- a/ppapi/shared_impl/test_globals.h
+++ b/ppapi/shared_impl/test_globals.h
@@ -49,6 +49,8 @@ class TestGlobals : public PpapiGlobals {
explicit TestGlobals(PpapiGlobals::PerThreadForTest);
virtual ~TestGlobals();
+ void set_proxy_lock(base::Lock* lock) { lock_ = lock; }
dmichael (off chromium) 2013/07/25 21:39:54 I think this is a holdover from an old version of
bbudge 2013/07/25 22:12:08 Done.
+
// PpapiGlobals implementation.
virtual ResourceTracker* GetResourceTracker() OVERRIDE;
virtual VarTracker* GetVarTracker() OVERRIDE;
@@ -80,6 +82,7 @@ class TestGlobals : public PpapiGlobals {
ResourceTracker resource_tracker_;
TestVarTracker var_tracker_;
scoped_refptr<CallbackTracker> callback_tracker_;
+ base::Lock* lock_;
DISALLOW_COPY_AND_ASSIGN(TestGlobals);
};
« no previous file with comments | « ppapi/proxy/ppapi_messages.h ('k') | ppapi/shared_impl/test_globals.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698