| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 2 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| 3 * Copyright (C) 2008 Apple Inc. All rights reserved. | 3 * Copyright (C) 2008 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Lesser General Public | 6 * modify it under the terms of the GNU Lesser General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 } | 47 } |
| 48 | 48 |
| 49 PassRefPtrWillBeRawPtr<DOMMimeType> DOMMimeTypeArray::item(unsigned index) | 49 PassRefPtrWillBeRawPtr<DOMMimeType> DOMMimeTypeArray::item(unsigned index) |
| 50 { | 50 { |
| 51 PluginData* data = getPluginData(); | 51 PluginData* data = getPluginData(); |
| 52 if (!data) | 52 if (!data) |
| 53 return nullptr; | 53 return nullptr; |
| 54 const Vector<MimeClassInfo>& mimes = data->mimes(); | 54 const Vector<MimeClassInfo>& mimes = data->mimes(); |
| 55 if (index >= mimes.size()) | 55 if (index >= mimes.size()) |
| 56 return nullptr; | 56 return nullptr; |
| 57 return DOMMimeType::create(data, m_frame, index).get(); | 57 return DOMMimeType::create(data, m_frame, index); |
| 58 } | 58 } |
| 59 | 59 |
| 60 bool DOMMimeTypeArray::canGetItemsForName(const AtomicString& propertyName) | 60 bool DOMMimeTypeArray::canGetItemsForName(const AtomicString& propertyName) |
| 61 { | 61 { |
| 62 PluginData *data = getPluginData(); | 62 PluginData *data = getPluginData(); |
| 63 if (!data) | 63 if (!data) |
| 64 return 0; | 64 return false; |
| 65 const Vector<MimeClassInfo>& mimes = data->mimes(); | 65 const Vector<MimeClassInfo>& mimes = data->mimes(); |
| 66 for (unsigned i = 0; i < mimes.size(); ++i) { | 66 for (unsigned i = 0; i < mimes.size(); ++i) { |
| 67 if (mimes[i].type == propertyName) | 67 if (mimes[i].type == propertyName) |
| 68 return true; | 68 return true; |
| 69 } | 69 } |
| 70 return false; | 70 return false; |
| 71 } | 71 } |
| 72 | 72 |
| 73 PassRefPtrWillBeRawPtr<DOMMimeType> DOMMimeTypeArray::namedItem(const AtomicStri
ng& propertyName) | 73 PassRefPtrWillBeRawPtr<DOMMimeType> DOMMimeTypeArray::namedItem(const AtomicStri
ng& propertyName) |
| 74 { | 74 { |
| 75 PluginData *data = getPluginData(); | 75 PluginData *data = getPluginData(); |
| 76 if (!data) | 76 if (!data) |
| 77 return nullptr; | 77 return nullptr; |
| 78 const Vector<MimeClassInfo>& mimes = data->mimes(); | 78 const Vector<MimeClassInfo>& mimes = data->mimes(); |
| 79 for (unsigned i = 0; i < mimes.size(); ++i) { | 79 for (unsigned i = 0; i < mimes.size(); ++i) { |
| 80 if (mimes[i].type == propertyName) | 80 if (mimes[i].type == propertyName) |
| 81 return DOMMimeType::create(data, m_frame, i).get(); | 81 return DOMMimeType::create(data, m_frame, i); |
| 82 } | 82 } |
| 83 return nullptr; | 83 return nullptr; |
| 84 } | 84 } |
| 85 | 85 |
| 86 PluginData* DOMMimeTypeArray::getPluginData() const | 86 PluginData* DOMMimeTypeArray::getPluginData() const |
| 87 { | 87 { |
| 88 if (!m_frame) | 88 if (!m_frame) |
| 89 return 0; | 89 return nullptr; |
| 90 Page* p = m_frame->page(); | 90 Page* p = m_frame->page(); |
| 91 if (!p) | 91 if (!p) |
| 92 return 0; | 92 return nullptr; |
| 93 return p->pluginData(); | 93 return p->pluginData(); |
| 94 } | 94 } |
| 95 | 95 |
| 96 } // namespace blink | 96 } // namespace blink |
| OLD | NEW |