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

Unified Diff: ppapi/shared_impl/tracker_base.h

Issue 7621070: Merge the plugin and impl side of the audio config and input event resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed compile issues Created 9 years, 4 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/tracker_base.h
diff --git a/ppapi/shared_impl/tracker_base.h b/ppapi/shared_impl/tracker_base.h
index ae9e9758fc1fc203f89ab06c3a8ccd18871692cf..49624c3a032b8f6d0faefe90ba641869f9b06912 100644
--- a/ppapi/shared_impl/tracker_base.h
+++ b/ppapi/shared_impl/tracker_base.h
@@ -8,6 +8,7 @@
#include "base/basictypes.h"
#include "base/memory/ref_counted.h"
#include "ppapi/c/pp_instance.h"
+#include "ppapi/c/pp_module.h"
#include "ppapi/c/pp_resource.h"
#include "ppapi/proxy/interface_id.h"
@@ -44,6 +45,10 @@ class TrackerBase {
virtual VarTracker* GetVarTracker() = 0;
virtual ResourceTracker* GetResourceTracker() = 0;
+
+ // Returns the PP_Module associated with the given PP_Instance, or 0 on
+ // failure.
+ virtual PP_Module GetModuleForInstance(PP_Instance instance) = 0;
};
} // namespace ppapi

Powered by Google App Engine
This is Rietveld 408576698