Searched refs:npObjectID (Results 1 – 6 of 6) sorted by relevance
/external/webkit/Source/WebKit2/Shared/Plugins/ |
D | NPRemoteObjectMap.cpp | 81 uint64_t npObjectID = generateNPObjectID(); in registerNPObject() local 82 …m_registeredNPObjects.set(npObjectID, NPObjectMessageReceiver::create(this, plugin, npObjectID, np… in registerNPObject() 84 return npObjectID; in registerNPObject() 87 void NPRemoteObjectMap::unregisterNPObject(uint64_t npObjectID) in unregisterNPObject() argument 89 m_registeredNPObjects.remove(npObjectID); in unregisterNPObject() 118 uint64_t npObjectID = npObjectProxy->npObjectID(); in npVariantToNPVariantData() local 123 return NPVariantData::makeRemoteNPObjectID(npObjectID); in npVariantToNPVariantData() 126 uint64_t npObjectID = registerNPObject(npObject, plugin); in npVariantToNPVariantData() local 127 return NPVariantData::makeLocalNPObjectID(npObjectID); in npVariantToNPVariantData() 162 uint64_t npObjectID = npVariantData.localNPObjectIDValue(); in npVariantDataToNPVariant() local [all …]
|
D | NPObjectProxy.h | 43 static NPObjectProxy* create(NPRemoteObjectMap*, Plugin*, uint64_t npObjectID); 54 uint64_t npObjectID() const { return m_npObjectID; } in npObjectID() function 62 void initialize(NPRemoteObjectMap*, Plugin*, uint64_t npObjectID);
|
D | NPObjectMessageReceiver.cpp | 38 …:create(NPRemoteObjectMap* npRemoteObjectMap, Plugin* plugin, uint64_t npObjectID, NPObject* npObj… in create() argument 40 return adoptPtr(new NPObjectMessageReceiver(npRemoteObjectMap, plugin, npObjectID, npObject)); in create() 43 …eceiver(NPRemoteObjectMap* npRemoteObjectMap, Plugin* plugin, uint64_t npObjectID, NPObject* npObj… in NPObjectMessageReceiver() argument 46 , m_npObjectID(npObjectID) in NPObjectMessageReceiver()
|
D | NPObjectProxy.cpp | 41 …y* NPObjectProxy::create(NPRemoteObjectMap* npRemoteObjectMap, Plugin* plugin, uint64_t npObjectID) in create() argument 44 npObjectProxy->initialize(npRemoteObjectMap, plugin, npObjectID); in create() 79 …PObjectProxy::initialize(NPRemoteObjectMap* npRemoteObjectMap, Plugin* plugin, uint64_t npObjectID) in initialize() argument 87 ASSERT(npObjectID); in initialize() 91 m_npObjectID = npObjectID; in initialize()
|
D | NPObjectMessageReceiver.h | 47 …wnPtr<NPObjectMessageReceiver> create(NPRemoteObjectMap*, Plugin*, uint64_t npObjectID, NPObject*); 56 NPObjectMessageReceiver(NPRemoteObjectMap*, Plugin*, uint64_t npObjectID, NPObject*);
|
/external/webkit/Source/WebKit2/ |
D | ChangeLog-2011-02-16 | 20122 (WebKit::NPObjectProxy::npObjectID): 21277 This now takes the NPRemoteObjectMap as well as the npObjectID of the object. 21297 Pass the NPRemoteObjectMap and the npObjectID to NPObjectMessageReceiver::create.
|