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

Unified Diff: ppapi/shared_impl/ppapi_globals.h

Issue 9006055: Move the tracked completion callback code into shared impl. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years 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/ppapi_globals.h
===================================================================
--- ppapi/shared_impl/ppapi_globals.h (revision 115831)
+++ ppapi/shared_impl/ppapi_globals.h (working copy)
@@ -13,6 +13,7 @@
namespace ppapi {
+class CallbackTracker;
class FunctionGroupBase;
class ResourceTracker;
class VarTracker;
@@ -29,6 +30,8 @@
// Retrieves the corresponding tracker.
virtual ResourceTracker* GetResourceTracker() = 0;
virtual VarTracker* GetVarTracker() = 0;
+ virtual CallbackTracker* GetCallbackTrackerForInstance(
+ PP_Instance instance) = 0;
// Returns the function object corresponding to the given ID, or NULL if
// there isn't one.

Powered by Google App Engine
This is Rietveld 408576698