Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(217)

Side by Side Diff: third_party/sqlite/src/src/sqlite.h.in

Issue 1485603003: Revert of "[sql] Remove part of WebDatabase SQLite patch." (patchset #1 of https://codereview.chrom… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/sqlite/src/src/os_unix.c ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 ** 2001 September 15 2 ** 2001 September 15
3 ** 3 **
4 ** The author disclaims copyright to this source code. In place of 4 ** The author disclaims copyright to this source code. In place of
5 ** a legal notice, here is a blessing: 5 ** a legal notice, here is a blessing:
6 ** 6 **
7 ** May you do good and not evil. 7 ** May you do good and not evil.
8 ** May you find forgiveness for yourself and forgive others. 8 ** May you find forgiveness for yourself and forgive others.
9 ** May you share freely, never taking more than you give. 9 ** May you share freely, never taking more than you give.
10 ** 10 **
(...skipping 7428 matching lines...) Expand 10 before | Expand all | Expand 10 after
7439 CHROMIUM_SQLITE_API 7439 CHROMIUM_SQLITE_API
7440 void chromium_sqlite3_initialize_unix_sqlite3_file(sqlite3_file* file); 7440 void chromium_sqlite3_initialize_unix_sqlite3_file(sqlite3_file* file);
7441 CHROMIUM_SQLITE_API 7441 CHROMIUM_SQLITE_API
7442 int chromium_sqlite3_fill_in_unix_sqlite3_file(sqlite3_vfs* vfs, 7442 int chromium_sqlite3_fill_in_unix_sqlite3_file(sqlite3_vfs* vfs,
7443 int fd, 7443 int fd,
7444 int dirfd, 7444 int dirfd,
7445 sqlite3_file* file, 7445 sqlite3_file* file,
7446 const char* fileName, 7446 const char* fileName,
7447 int noLock); 7447 int noLock);
7448 CHROMIUM_SQLITE_API 7448 CHROMIUM_SQLITE_API
7449 int chromium_sqlite3_get_reusable_file_handle(sqlite3_file* file,
7450 const char* fileName,
7451 int flags,
7452 int* fd);
7453 CHROMIUM_SQLITE_API
7449 void chromium_sqlite3_update_reusable_file_handle(sqlite3_file* file, 7454 void chromium_sqlite3_update_reusable_file_handle(sqlite3_file* file,
7450 int fd, 7455 int fd,
7451 int flags); 7456 int flags);
7452 CHROMIUM_SQLITE_API 7457 CHROMIUM_SQLITE_API
7453 void chromium_sqlite3_destroy_reusable_file_handle(sqlite3_file* file); 7458 void chromium_sqlite3_destroy_reusable_file_handle(sqlite3_file* file);
7454 #endif /* _WIN32 */ 7459 #endif /* _WIN32 */
7455 #endif /* CHROMIUM_SQLITE_INTERNALS */ 7460 #endif /* CHROMIUM_SQLITE_INTERNALS */
7456 /* End WebDatabase patch for Chromium */ 7461 /* End WebDatabase patch for Chromium */
7457 7462
7458 /* 7463 /*
7459 ** Undo the hack that converts floating point types to integer for 7464 ** Undo the hack that converts floating point types to integer for
7460 ** builds on processors without floating point support. 7465 ** builds on processors without floating point support.
7461 */ 7466 */
7462 #ifdef SQLITE_OMIT_FLOATING_POINT 7467 #ifdef SQLITE_OMIT_FLOATING_POINT
7463 # undef double 7468 # undef double
7464 #endif 7469 #endif
7465 7470
7466 #ifdef __cplusplus 7471 #ifdef __cplusplus
7467 } /* End of the 'extern "C"' block */ 7472 } /* End of the 'extern "C"' block */
7468 #endif 7473 #endif
7469 #endif /* _SQLITE3_H_ */ 7474 #endif /* _SQLITE3_H_ */
OLDNEW
« no previous file with comments | « third_party/sqlite/src/src/os_unix.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698