#ifndef ChromiumBridge_h
#define ChromiumBridge_h
-#include "FileSystem.h"
#include "LinkHash.h"
#include "PassRefPtr.h"
#include "PasteboardPrivate.h"
// Widget -------------------------------------------------------------
static void widgetSetCursor(Widget*, const Cursor&);
static void widgetSetFocus(Widget*);
-
- // HTML5 DB -----------------------------------------------------------
-
-#if ENABLE(DATABASE)
- // Opens a database file
- // 'desiredFlags' is a collection of OR'd SQLite constants that
- // determine how the file should be opened
- static PlatformFileHandle databaseOpenFile(const String& fileName, int desiredFlags);
-
- // Deletes a database file
- // Returns 'true' if the file was deleted; 'false' otherwise
- static bool databaseDeleteFile(const String& fileName);
-
- // Returns the file attributes of the given database file
- static long databaseGetFileAttributes(const String& fileName);
-
- // Returns size of the given file
- static long long databaseGetFileSize(const String& fileName);
-#endif
};
} // namespace WebCore