summaryrefslogtreecommitdiffstats
path: root/DVDPluginWebPage.h
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2009-12-02 20:56:44 -0500
committerJason A. Donenfeld <Jason@zx2c4.com>2009-12-02 20:56:44 -0500
commit8328c31dba7c71ee20ee32f1a735d639f9e43928 (patch)
tree257860b481eec7adcb69701f35b68333dd251525 /DVDPluginWebPage.h
downloadEmbeddedBrowserPrototype-8328c31dba7c71ee20ee32f1a735d639f9e43928.tar.xz
EmbeddedBrowserPrototype-8328c31dba7c71ee20ee32f1a735d639f9e43928.zip
Initial import.
Diffstat (limited to 'DVDPluginWebPage.h')
-rw-r--r--DVDPluginWebPage.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/DVDPluginWebPage.h b/DVDPluginWebPage.h
new file mode 100644
index 0000000..a4b8c37
--- /dev/null
+++ b/DVDPluginWebPage.h
@@ -0,0 +1,15 @@
+#ifndef DVDPLUGINWEBPAGE_H
+#define DVDPLUGINWEBPAGE_H
+
+#include <QWebPage>
+
+class DVDPluginWebPage : public QWebPage
+{
+public:
+ DVDPluginWebPage(QObject *parent = 0);
+protected:
+ QObject* createPlugin(const QString &classid, const QUrl &url, const QStringList &paramNames, const QStringList &paramValues);
+ void javaScriptConsoleMessage(const QString &message, int lineNumber, const QString &sourceID);
+};
+
+#endif // DVDPLUGINWEBPAGE_H