Home | History | Annotate | Download | only in Hosted

Lines Matching refs:instance

227     // If the plug-in host crashes while we're waiting for a reply, the last reference to the instance proxy
231 // We don't care about the reply here - we just want to block until the plug-in instance has been torn down.
1133 if (ProxyInstance* instance = static_cast<ProxyInstance*>(imp->getInternalInstance())) {
1135 [array addObject:[NSNumber numberWithInt:instance->objectID()]];
1258 PassRefPtr<Instance> NetscapePluginInstanceProxy::createBindingsInstance(PassRefPtr<RootObject> rootObject)
1265 // If the plug-in host crashes while we're waiting for a reply, the last reference to the instance proxy
1279 void NetscapePluginInstanceProxy::addInstance(ProxyInstance* instance)
1281 ASSERT(!m_instances.contains(instance));
1283 m_instances.add(instance);
1286 void NetscapePluginInstanceProxy::removeInstance(ProxyInstance* instance)
1288 ASSERT(m_instances.contains(instance));
1290 m_instances.remove(instance);