18e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project/*
2563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
38e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *
48e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * Redistribution and use in source and binary forms, with or without
58e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * modification, are permitted provided that the following conditions
68e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * are met:
78e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *
88e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * 1.  Redistributions of source code must retain the above copyright
9563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark *     notice, this list of conditions and the following disclaimer.
108e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * 2.  Redistributions in binary form must reproduce the above copyright
118e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *     notice, this list of conditions and the following disclaimer in the
12563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark *     documentation and/or other materials provided with the distribution.
138e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
148e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *     its contributors may be used to endorse or promote products derived
15563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark *     from this software without specific prior written permission.
168e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *
178e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
188e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
198e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
208e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
218e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
228e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
238e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
248e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
258e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
268e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
278e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project */
28563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark#include "testplugin.h"
298e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
30563af33bc48281d19dce701398dbb88cb54fd7ecCary ClarkTestPlugin::TestPlugin(QObject *parent)
31563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark    : QWebPluginFactory(parent)
328e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project{
338e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project}
348e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
35563af33bc48281d19dce701398dbb88cb54fd7ecCary ClarkTestPlugin::~TestPlugin()
368e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project{
378e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project}
388e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
39563af33bc48281d19dce701398dbb88cb54fd7ecCary ClarkQList<QWebPluginFactory::Plugin> TestPlugin::plugins() const
408e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project{
41563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark    QWebPluginFactory::Plugin plugin;
428e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
43563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark    plugin.name = "testplugin";
44563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark    plugin.description = "testdescription";
45563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark    MimeType mimeType;
46563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark    mimeType.name = "testtype";
47563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark    mimeType.fileExtensions.append("testsuffixes");
48563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark    plugin.mimeTypes.append(mimeType);
49563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark
50563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark    plugin.name = "testplugin2";
51563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark    plugin.description = "testdescription2";
52563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark    mimeType.name = "testtype2";
53563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark    mimeType.fileExtensions.append("testsuffixes2");
54563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark    mimeType.fileExtensions.append("testsuffixes3");
55563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark    plugin.mimeTypes.append(mimeType);
56563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark
57563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark    return QList<QWebPluginFactory::Plugin>() << plugin;
588e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project}
598e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
60563af33bc48281d19dce701398dbb88cb54fd7ecCary ClarkQObject *TestPlugin::create(const QString&,
61563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark                            const QUrl&,
62563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark                            const QStringList&,
63563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark                            const QStringList&) const
648e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project{
65563af33bc48281d19dce701398dbb88cb54fd7ecCary Clark    return 0;
668e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project}
678e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
68