Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / modules / webdatabase / sqlite / SQLiteDatabase.h
index 3e17c32..79e8da9 100644 (file)
@@ -42,7 +42,6 @@ struct sqlite3;
 namespace blink {
 
 class DatabaseAuthorizer;
-class SQLiteStatement;
 class SQLiteTransaction;
 
 extern const int SQLResultDone;
@@ -60,7 +59,7 @@ public:
     SQLiteDatabase();
     ~SQLiteDatabase();
 
-    bool open(const String& filename, bool forWebSQLDatabase = false);
+    bool open(const String& filename);
     bool isOpen() const { return m_db; }
     void close();
 
@@ -129,7 +128,7 @@ private:
     bool m_sharable;
 
     Mutex m_authorizerLock;
-    RefPtrWillBeMember<DatabaseAuthorizer> m_authorizer;
+    Member<DatabaseAuthorizer> m_authorizer;
 
     ThreadIdentifier m_openingThread;