summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/network/qt/CookieJarQt.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/platform/network/qt/CookieJarQt.h')
-rw-r--r--Source/WebCore/platform/network/qt/CookieJarQt.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/WebCore/platform/network/qt/CookieJarQt.h b/Source/WebCore/platform/network/qt/CookieJarQt.h
index edc2813d1..0f7b6abef 100644
--- a/Source/WebCore/platform/network/qt/CookieJarQt.h
+++ b/Source/WebCore/platform/network/qt/CookieJarQt.h
@@ -21,9 +21,10 @@
#ifndef CookieJarQt_h
#define CookieJarQt_h
+#include "SQLiteDatabase.h"
+
#include <QtCore/QObject>
#include <QtNetwork/QNetworkCookieJar>
-#include <QtSql/QSqlDatabase>
#include <wtf/HashSet.h>
#include <wtf/text/WTFString.h>
@@ -47,9 +48,9 @@ public:
private:
SharedCookieJarQt(const String&);
~SharedCookieJarQt();
- void ensureDatabaseTable();
+ bool ensureDatabaseTable();
- QSqlDatabase m_database;
+ SQLiteDatabase m_database;
};
}