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

  /external/webkit/Source/WebKit2/Shared/Plugins/
NPRemoteObjectMap.h 44 class NPRemoteObjectMap : public RefCounted<NPRemoteObjectMap> {
46 static PassRefPtr<NPRemoteObjectMap> create(CoreIPC::Connection*);
47 ~NPRemoteObjectMap();
70 explicit NPRemoteObjectMap(CoreIPC::Connection*);
NPObjectMessageReceiver.h 39 class NPRemoteObjectMap;
47 static PassOwnPtr<NPObjectMessageReceiver> create(NPRemoteObjectMap*, Plugin*, uint64_t npObjectID, NPObject*);
56 NPObjectMessageReceiver(NPRemoteObjectMap*, Plugin*, uint64_t npObjectID, NPObject*);
70 NPRemoteObjectMap* m_npRemoteObjectMap;
NPRemoteObjectMap.cpp 27 #include "NPRemoteObjectMap.h"
46 PassRefPtr<NPRemoteObjectMap> NPRemoteObjectMap::create(CoreIPC::Connection* connection)
48 return adoptRef(new NPRemoteObjectMap(connection));
51 NPRemoteObjectMap::NPRemoteObjectMap(CoreIPC::Connection* connection)
56 NPRemoteObjectMap::~NPRemoteObjectMap()
62 NPObject* NPRemoteObjectMap::createNPObjectProxy(uint64_t remoteObjectID, Plugin* plugin)
71 void NPRemoteObjectMap::npObjectProxyDestroyed(NPObject* npObject
    [all...]
NPObjectProxy.h 36 class NPRemoteObjectMap;
43 static NPObjectProxy* create(NPRemoteObjectMap*, Plugin*, uint64_t npObjectID);
62 void initialize(NPRemoteObjectMap*, Plugin*, uint64_t npObjectID);
87 NPRemoteObjectMap* m_npRemoteObjectMap;
NPObjectMessageReceiver.cpp 32 #include "NPRemoteObjectMap.h"
38 PassOwnPtr<NPObjectMessageReceiver> NPObjectMessageReceiver::create(NPRemoteObjectMap* npRemoteObjectMap, Plugin* plugin, uint64_t npObjectID, NPObject* npObject)
40 return adoptPtr(new NPObjectMessageReceiver(npRemoteObjectMap, plugin, npObjectID, npObject));
43 NPObjectMessageReceiver::NPObjectMessageReceiver(NPRemoteObjectMap* npRemoteObjectMap, Plugin* plugin, uint64_t npObjectID, NPObject* npObject)
44 : m_npRemoteObjectMap(npRemoteObjectMap)
NPObjectProxy.cpp 35 #include "NPRemoteObjectMap.h"
41 NPObjectProxy* NPObjectProxy::create(NPRemoteObjectMap* npRemoteObjectMap, Plugin* plugin, uint64_t npObjectID)
44 npObjectProxy->initialize(npRemoteObjectMap, plugin, npObjectID);
79 void NPObjectProxy::initialize(NPRemoteObjectMap* npRemoteObjectMap, Plugin* plugin, uint64_t npObjectID)
85 ASSERT(npRemoteObjectMap);
89 m_npRemoteObjectMap = npRemoteObjectMap;
  /external/webkit/Source/WebKit2/PluginProcess/
WebProcessConnection.h 37 class NPRemoteObjectMap;
48 NPRemoteObjectMap* npRemoteObjectMap() const { return m_npRemoteObjectMap.get(); }
74 RefPtr<NPRemoteObjectMap> m_npRemoteObjectMap;
WebProcessConnection.cpp 31 #include "NPRemoteObjectMap.h"
53 m_npRemoteObjectMap = NPRemoteObjectMap::create(m_connection.get());
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginProcessConnection.h 40 class NPRemoteObjectMap;
59 NPRemoteObjectMap* npRemoteObjectMap() const { return m_npRemoteObjectMap.get(); }
80 RefPtr<NPRemoteObjectMap> m_npRemoteObjectMap;
PluginProcessConnection.cpp 31 #include "NPRemoteObjectMap.h"
62 m_npRemoteObjectMap = NPRemoteObjectMap::create(m_connection.get());

Completed in 63 milliseconds