| 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 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Lesser General Public | 5 * modify it under the terms of the GNU Lesser General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "platform/plugins/PluginData.h" | 22 #include "platform/plugins/PluginData.h" |
| 23 #include "wtf/text/AtomicString.h" | 23 #include "wtf/text/AtomicString.h" |
| 24 | 24 |
| 25 namespace blink { | 25 namespace blink { |
| 26 | 26 |
| 27 DOMPlugin::DOMPlugin(PluginData* pluginData, LocalFrame* frame, unsigned index) | 27 DOMPlugin::DOMPlugin(PluginData* pluginData, LocalFrame* frame, unsigned index) |
| 28 : FrameDestructionObserver(frame) | 28 : FrameDestructionObserver(frame) |
| 29 , m_pluginData(pluginData) | 29 , m_pluginData(pluginData) |
| 30 , m_index(index) | 30 , m_index(index) |
| 31 { | 31 { |
| 32 ScriptWrappable::init(this); | |
| 33 } | 32 } |
| 34 | 33 |
| 35 DOMPlugin::~DOMPlugin() | 34 DOMPlugin::~DOMPlugin() |
| 36 { | 35 { |
| 37 } | 36 } |
| 38 | 37 |
| 39 String DOMPlugin::name() const | 38 String DOMPlugin::name() const |
| 40 { | 39 { |
| 41 return pluginInfo().name; | 40 return pluginInfo().name; |
| 42 } | 41 } |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 PassRefPtrWillBeRawPtr<DOMMimeType> DOMPlugin::namedItem(const AtomicString& pro
pertyName) | 82 PassRefPtrWillBeRawPtr<DOMMimeType> DOMPlugin::namedItem(const AtomicString& pro
pertyName) |
| 84 { | 83 { |
| 85 const Vector<MimeClassInfo>& mimes = m_pluginData->mimes(); | 84 const Vector<MimeClassInfo>& mimes = m_pluginData->mimes(); |
| 86 for (unsigned i = 0; i < mimes.size(); ++i) | 85 for (unsigned i = 0; i < mimes.size(); ++i) |
| 87 if (mimes[i].type == propertyName) | 86 if (mimes[i].type == propertyName) |
| 88 return DOMMimeType::create(m_pluginData.get(), m_frame, i).get(); | 87 return DOMMimeType::create(m_pluginData.get(), m_frame, i).get(); |
| 89 return nullptr; | 88 return nullptr; |
| 90 } | 89 } |
| 91 | 90 |
| 92 } // namespace blink | 91 } // namespace blink |
| OLD | NEW |