blob: 46f765930c0a663602d1e6f6c158f9e924a3e6de [file] [log] [blame]
/*
Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef DOMPlugin_h
#define DOMPlugin_h
#include "bindings/core/v8/ScriptWrappable.h"
#include "core/dom/ContextLifecycleObserver.h"
#include "modules/plugins/DOMMimeType.h"
#include "platform/heap/Handle.h"
#include "platform/wtf/Forward.h"
#include "platform/wtf/RefPtr.h"
namespace blink {
class PluginData;
class DOMPlugin final : public GarbageCollectedFinalized<DOMPlugin>,
public ScriptWrappable,
public ContextClient {
USING_GARBAGE_COLLECTED_MIXIN(DOMPlugin);
DEFINE_WRAPPERTYPEINFO();
public:
static DOMPlugin* Create(PluginData* plugin_data,
LocalFrame* frame,
unsigned index) {
return new DOMPlugin(plugin_data, frame, index);
}
virtual ~DOMPlugin();
String name() const;
String filename() const;
String description() const;
unsigned length() const;
DOMMimeType* item(unsigned index);
DOMMimeType* namedItem(const AtomicString& property_name);
DECLARE_VIRTUAL_TRACE();
private:
DOMPlugin(PluginData*, LocalFrame*, unsigned index);
const PluginInfo& GetPluginInfo() const {
return plugin_data_->Plugins()[index_];
}
RefPtr<PluginData> plugin_data_;
unsigned index_;
};
} // namespace blink
#endif // DOMPlugin_h