Home
last modified time | relevance | path

Searched refs:pluginModule (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/WebKit2/Shared/Plugins/Netscape/
DNetscapePluginModule.cpp140 NetscapePluginModule* pluginModule = initializedNetscapePluginModules()[i]; in getOrCreate() local
142 if (pluginModule->m_pluginPath == pluginPath) in getOrCreate()
143 return pluginModule; in getOrCreate()
146 RefPtr<NetscapePluginModule> pluginModule(adoptRef(new NetscapePluginModule(pluginPath))); in getOrCreate() local
149 if (!pluginModule->load()) in getOrCreate()
152 return pluginModule.release(); in getOrCreate()
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
DNetscapePlugin.cpp48 PassRefPtr<NetscapePlugin> NetscapePlugin::create(PassRefPtr<NetscapePluginModule> pluginModule) in create() argument
50 if (!pluginModule) in create()
53 return adoptRef(new NetscapePlugin(pluginModule)); in create()
56 NetscapePlugin::NetscapePlugin(PassRefPtr<NetscapePluginModule> pluginModule) in NetscapePlugin() argument
59 , m_pluginModule(pluginModule) in NetscapePlugin()
DNetscapePlugin.h48 static PassRefPtr<NetscapePlugin> create(PassRefPtr<NetscapePluginModule> pluginModule);
118 NetscapePlugin(PassRefPtr<NetscapePluginModule> pluginModule);