HomeSort by relevance Sort by last modified time
    Searched refs:PluginProxy (Results 1 - 8 of 8) sorted by null

  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/qt/
PluginProxyQt.cpp 27 #include "PluginProxy.h"
35 bool PluginProxy::needsBackingStore() const
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginProxy.cpp 27 #include "PluginProxy.h"
55 PassRefPtr<PluginProxy> PluginProxy::create(const String& pluginPath)
57 return adoptRef(new PluginProxy(pluginPath));
60 PluginProxy::PluginProxy(const String& pluginPath)
71 PluginProxy::~PluginProxy()
75 void PluginProxy::pluginProcessCrashed()
81 bool PluginProxy::initialize(PluginController* pluginController, const Parameters& parameters
    [all...]
PluginProcessConnection.h 42 class PluginProxy;
56 void addPluginProxy(PluginProxy*);
57 void removePluginProxy(PluginProxy*);
78 HashMap<uint64_t, PluginProxy*> m_plugins;
PluginProcessConnection.cpp 33 #include "PluginProxy.h"
73 void PluginProcessConnection::addPluginProxy(PluginProxy* plugin)
79 void PluginProcessConnection::removePluginProxy(PluginProxy* plugin)
104 if (PluginProxy* pluginProxy = m_plugins.get(arguments->destinationID()))
105 pluginProxy->didReceivePluginProxyMessage(connection, messageID, arguments);
117 if (PluginProxy* pluginProxy = m_plugins.get(arguments->destinationID()))
118 return pluginProxy->didReceiveSyncPluginProxyMessage(connection, messageID, arguments, reply);
127 for (HashMap<uint64_t, PluginProxy*>::const_iterator::Values it = m_plugins.begin().values(), end = m_plugins.end().values(); it != e (…)
    [all...]
PluginProxy.h 49 class PluginProxy : public Plugin {
51 static PassRefPtr<PluginProxy> create(const String& pluginPath);
52 ~PluginProxy();
61 explicit PluginProxy(const String& pluginPath);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/mac/
PluginProxyMac.mm 27 #import "PluginProxy.h"
35 PlatformLayer* PluginProxy::pluginLayer()
52 bool PluginProxy::needsBackingStore() const
  /external/webkit/Source/WebKit2/PluginProcess/
PluginControllerProxy.cpp 159 m_connection->connection()->send(Messages::PluginProxy::Update(dirtyRect), m_pluginInstanceID);
204 m_connection->connection()->send(Messages::PluginProxy::LoadURL(requestID, method, urlString, target, headerFields, httpBody, allowPopups), m_pluginInstanceID);
209 m_connection->connection()->send(Messages::PluginProxy::CancelStreamLoad(streamID), m_pluginInstanceID);
216 m_connection->connection()->send(Messages::PluginProxy::CancelManualStreamLoad(), m_pluginInstanceID);
224 if (!m_connection->connection()->sendSync(Messages::PluginProxy::GetWindowScriptNPObject(), Messages::PluginProxy::GetWindowScriptNPObject::Reply(windowScriptNPObjectID), m_pluginInstanceID))
243 if (!m_connection->connection()->sendSync(Messages::PluginProxy::GetPluginElementNPObject(), Messages::PluginProxy::GetPluginElementNPObject::Reply(pluginElementNPObjectID), m_pluginInstanceID))
270 if (!m_connection->connection()->sendSync(Messages::PluginProxy::Evaluate(npObjectAsNPVariantData, scriptString, allowPopups), Messages::PluginProxy::Evaluate::Reply(returnValue, resultData), m_pluginInstanceID)
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.cpp 39 #include "PluginProxy.h"
318 return PluginProxy::create(pluginPath);
    [all...]

Completed in 85 milliseconds