Lines Matching refs:instance
23 class Instance;
26 /// an instance of your module on the web page. The browser creates a new
27 /// instance for each <code>\<embed></code> tag with
31 typedef std::map<PP_Instance, Instance*> InstanceMap;
39 /// Get() returns the global instance of this module object, or NULL if the
42 /// @return The global instance of the module object.
90 /// be called from the main thread! This instance object may be destroyed at
94 /// @param[in] instance This <code>PP_Instance</code>.
98 Instance* InstanceForPPInstance(PP_Instance instance);
141 /// @param[in] instance A <code>PP_Instance</code>.
143 /// @return The resulting instance.
144 virtual Instance* CreateInstance(PP_Instance instance) = 0;
151 friend void Instance_DidDestroy(PP_Instance instance);
157 // Instance tracking.