Home
last modified time | relevance | path

Searched refs:m_pluginObjects (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/bindings/v8/
DScriptController.cpp129 PluginObjectMap::iterator it = m_pluginObjects.begin(); in clearScriptObjects()
130 for (; it != m_pluginObjects.end(); ++it) { in clearScriptObjects()
134 m_pluginObjects.clear(); in clearScriptObjects()
352 PluginObjectMap::iterator it = m_pluginObjects.find(widget); in createScriptInstanceForWidget()
353 if (it != m_pluginObjects.end()) { in createScriptInstanceForWidget()
360 m_pluginObjects.set(widget, npObject); in createScriptInstanceForWidget()
367 PluginObjectMap::iterator it = m_pluginObjects.find(nativeHandle); in cleanupScriptObjectsForPlugin()
368 if (it == m_pluginObjects.end()) in cleanupScriptObjectsForPlugin()
372 m_pluginObjects.remove(it); in cleanupScriptObjectsForPlugin()
DScriptController.h211 PluginObjectMap m_pluginObjects; variable