diff options
author | dumi@chromium.org <dumi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-20 18:04:04 +0000 |
---|---|---|
committer | dumi@chromium.org <dumi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-20 18:04:04 +0000 |
commit | eca56d34420e0f72a472c928714d1fcc7ced24ea (patch) | |
tree | f37b1dbf3fbd67c51366c153fd7c664c7cd10fa0 /third_party | |
parent | 537063859cbd93a94c4cf68e8e1230bf90ac571a (diff) | |
download | chromium_src-eca56d34420e0f72a472c928714d1fcc7ced24ea.zip chromium_src-eca56d34420e0f72a472c928714d1fcc7ced24ea.tar.gz chromium_src-eca56d34420e0f72a472c928714d1fcc7ced24ea.tar.bz2 |
Stubs for DB-related methods in ChromiumBridge.
Review URL: http://codereview.chromium.org/159044
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21083 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/sqlite/README.chromium | 5 | ||||
-rw-r--r-- | third_party/sqlite/src/os_win.c | 7 |
2 files changed, 11 insertions, 1 deletions
diff --git a/third_party/sqlite/README.chromium b/third_party/sqlite/README.chromium index 509f313..b44671a 100644 --- a/third_party/sqlite/README.chromium +++ b/third_party/sqlite/README.chromium @@ -68,7 +68,7 @@ Scott Hess <shess@google.com>, December 11, 2007 -------------------------------------------- -As of September 12, 2008, these are our changes from sqlite_vendor: +As of July 17, 2009, these are our changes from sqlite_vendor: - fts2.c disables fts2_tokenizer(). - sqlite3Poison() in src/btree.c. @@ -103,3 +103,6 @@ Changes from Chrome: allows much faster performance by reading the file in one contiguous operation rather than bringing it in organically, which involves a lot of seeking. + - Added a new function chromium_sqlite3_initialize_win_sqlite3_file() + at the end of os_win.c. It allows the Windows-specific Chromium VFS + to reuse most of the win32 SQLite VFS. diff --git a/third_party/sqlite/src/os_win.c b/third_party/sqlite/src/os_win.c index ec30add..f5baabb 100644 --- a/third_party/sqlite/src/os_win.c +++ b/third_party/sqlite/src/os_win.c @@ -1635,4 +1635,11 @@ int sqlite3_os_end(void){ return SQLITE_OK; } +void chromium_sqlite3_initialize_win_sqlite3_file(sqlite3_file* file, HANDLE handle) { + winFile* winSQLite3File = (winFile*)file; + memset(file, 0, sizeof(*file)); + winSQLite3File->pMethod = &winIoMethod; + winSQLite3File->h = handle; +} + #endif /* SQLITE_OS_WIN */ |