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

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

Issue 1473963002: [sql] Remove part of WebDatabase SQLite patch. (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
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
7454 void chromium_sqlite3_update_reusable_file_handle(sqlite3_file* file, 7449 void chromium_sqlite3_update_reusable_file_handle(sqlite3_file* file,
7455 int fd, 7450 int fd,
7456 int flags); 7451 int flags);
7457 CHROMIUM_SQLITE_API 7452 CHROMIUM_SQLITE_API
7458 void chromium_sqlite3_destroy_reusable_file_handle(sqlite3_file* file); 7453 void chromium_sqlite3_destroy_reusable_file_handle(sqlite3_file* file);
7459 #endif /* _WIN32 */ 7454 #endif /* _WIN32 */
7460 #endif /* CHROMIUM_SQLITE_INTERNALS */ 7455 #endif /* CHROMIUM_SQLITE_INTERNALS */
7461 /* End WebDatabase patch for Chromium */ 7456 /* End WebDatabase patch for Chromium */
7462 7457
7463 /* 7458 /*
7464 ** Undo the hack that converts floating point types to integer for 7459 ** Undo the hack that converts floating point types to integer for
7465 ** builds on processors without floating point support. 7460 ** builds on processors without floating point support.
7466 */ 7461 */
7467 #ifdef SQLITE_OMIT_FLOATING_POINT 7462 #ifdef SQLITE_OMIT_FLOATING_POINT
7468 # undef double 7463 # undef double
7469 #endif 7464 #endif
7470 7465
7471 #ifdef __cplusplus 7466 #ifdef __cplusplus
7472 } /* End of the 'extern "C"' block */ 7467 } /* End of the 'extern "C"' block */
7473 #endif 7468 #endif
7474 #endif /* _SQLITE3_H_ */ 7469 #endif /* _SQLITE3_H_ */
OLDNEW
« third_party/sqlite/src/src/os_unix.c ('K') | « 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