| Index: Source/core/plugins/DOMMimeTypeArray.cpp
|
| diff --git a/Source/core/plugins/DOMMimeTypeArray.cpp b/Source/core/plugins/DOMMimeTypeArray.cpp
|
| index 32904c922aea436dd54f8853d8982d2a1062eaa9..1652012cae41c7269621ce9d42d5b1dbae59ec18 100644
|
| --- a/Source/core/plugins/DOMMimeTypeArray.cpp
|
| +++ b/Source/core/plugins/DOMMimeTypeArray.cpp
|
| @@ -57,19 +57,6 @@ PassRefPtrWillBeRawPtr<DOMMimeType> DOMMimeTypeArray::item(unsigned index)
|
| return DOMMimeType::create(data, m_frame, index);
|
| }
|
|
|
| -bool DOMMimeTypeArray::canGetItemsForName(const AtomicString& propertyName)
|
| -{
|
| - PluginData *data = getPluginData();
|
| - if (!data)
|
| - return false;
|
| - const Vector<MimeClassInfo>& mimes = data->mimes();
|
| - for (unsigned i = 0; i < mimes.size(); ++i) {
|
| - if (mimes[i].type == propertyName)
|
| - return true;
|
| - }
|
| - return false;
|
| -}
|
| -
|
| PassRefPtrWillBeRawPtr<DOMMimeType> DOMMimeTypeArray::namedItem(const AtomicString& propertyName)
|
| {
|
| PluginData *data = getPluginData();
|
|
|