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

  /external/webkit/Source/WebKit2/Shared/Plugins/
NPRemoteObjectMap.cpp 81 uint64_t npObjectID = generateNPObjectID();
82 m_registeredNPObjects.set(npObjectID, NPObjectMessageReceiver::create(this, plugin, npObjectID, npObject).leakPtr());
84 return npObjectID;
87 void NPRemoteObjectMap::unregisterNPObject(uint64_t npObjectID)
89 m_registeredNPObjects.remove(npObjectID);
118 uint64_t npObjectID = npObjectProxy->npObjectID();
123 return NPVariantData::makeRemoteNPObjectID(npObjectID);
126 uint64_t npObjectID = registerNPObject(npObject, plugin)
    [all...]
NPObjectProxy.h 43 static NPObjectProxy* create(NPRemoteObjectMap*, Plugin*, uint64_t npObjectID);
54 uint64_t npObjectID() const { return m_npObjectID; }
62 void initialize(NPRemoteObjectMap*, Plugin*, uint64_t npObjectID);
NPObjectMessageReceiver.h 47 static PassOwnPtr<NPObjectMessageReceiver> create(NPRemoteObjectMap*, Plugin*, uint64_t npObjectID, NPObject*);
56 NPObjectMessageReceiver(NPRemoteObjectMap*, Plugin*, uint64_t npObjectID, NPObject*);
NPObjectMessageReceiver.cpp 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)
46 , m_npObjectID(npObjectID)
NPObjectProxy.cpp 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)
87 ASSERT(npObjectID);
91 m_npObjectID = npObjectID;

Completed in 158 milliseconds