diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-16 01:54:57 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-16 01:54:57 +0000 |
commit | bdee626afdb33cdb928a34bfbd141a339c9a869d (patch) | |
tree | a1054c01cad5460fb02ff39b4a9430e098d92e1a /third_party/sqlite | |
parent | e19b7e8e213bd2d826628bef6f258d92fdc774de (diff) | |
download | chromium_src-bdee626afdb33cdb928a34bfbd141a339c9a869d.zip chromium_src-bdee626afdb33cdb928a34bfbd141a339c9a869d.tar.gz chromium_src-bdee626afdb33cdb928a34bfbd141a339c9a869d.tar.bz2 |
Revert "Stubs for DB-related methods in ChromiumBridge."
This reverts commit r20839. It broke many builds.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20840 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/sqlite')
-rw-r--r-- | third_party/sqlite/README.chromium | 5 | ||||
-rw-r--r-- | third_party/sqlite/src/os_win.c | 7 |
2 files changed, 1 insertions, 11 deletions
diff --git a/third_party/sqlite/README.chromium b/third_party/sqlite/README.chromium index 8dfe456..509f313 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 July 10, 2009, these are our changes from sqlite_vendor: +As of September 12, 2008, these are our changes from sqlite_vendor: - fts2.c disables fts2_tokenizer(). - sqlite3Poison() in src/btree.c. @@ -103,6 +103,3 @@ 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 f5baabb..ec30add 100644 --- a/third_party/sqlite/src/os_win.c +++ b/third_party/sqlite/src/os_win.c @@ -1635,11 +1635,4 @@ 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 */ |