X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=Source%2FWebCore%2Fplatform%2Fsql%2FSQLiteDatabase.h;h=0bf03141a335264d245e8ad22fc01ff56b1fb040;hb=b96e33af77ac7d81a666d5aa202235b793aeeb21;hp=da53acc5edec5e9107345cb5d13ddb8dc5da1845;hpb=2632619e54bc9f41ccea7c574710fe213e49212d;p=framework%2Fweb%2Fwebkit-efl.git diff --git a/Source/WebCore/platform/sql/SQLiteDatabase.h b/Source/WebCore/platform/sql/SQLiteDatabase.h index da53acc..0bf0314 100755 --- a/Source/WebCore/platform/sql/SQLiteDatabase.h +++ b/Source/WebCore/platform/sql/SQLiteDatabase.h @@ -28,6 +28,7 @@ #define SQLiteDatabase_h #include "PlatformString.h" +#include #include #if COMPILER(MSVC) @@ -68,8 +69,8 @@ public: bool tableExists(const String&); void clearAllTables(); - void runVacuumCommand(); - void runIncrementalVacuumCommand(); + int runVacuumCommand(); + int runIncrementalVacuumCommand(); bool transactionInProgress() const { return m_transactionInProgress; } @@ -153,7 +154,10 @@ private: Mutex m_databaseClosingMutex; bool m_interrupted; -}; // class SQLiteDatabase + + int m_openError; + CString m_openErrorMessage; +}; } // namespace WebCore