Searched defs:propertyNameData (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebKit2/Shared/Plugins/
H A DNPObjectMessageReceiver.cpp130 void NPObjectMessageReceiver::hasProperty(const NPIdentifierData& propertyNameData, bool& returnValue) argument
137 returnValue = m_npObject->_class->hasProperty(m_npObject, propertyNameData.createNPIdentifier());
140 void NPObjectMessageReceiver::getProperty(const NPIdentifierData& propertyNameData, bool& returnValue, NPVariantData& resultData) argument
148 returnValue = m_npObject->_class->getProperty(m_npObject, propertyNameData.createNPIdentifier(), &result);
159 void NPObjectMessageReceiver::setProperty(const NPIdentifierData& propertyNameData, const NPVariantData& propertyValueData, bool& returnValue) argument
169 returnValue = m_npObject->_class->setProperty(m_npObject, propertyNameData.createNPIdentifier(), &propertyValue);
175 void NPObjectMessageReceiver::removeProperty(const NPIdentifierData& propertyNameData, bool& returnValue) argument
182 returnValue = m_npObject->_class->removeProperty(m_npObject, propertyNameData.createNPIdentifier());

Completed in 64 milliseconds