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

Side by Side Diff: third_party/sqlite/amalgamation/sqlite3.h

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 7433 matching lines...) Expand 10 before | Expand all | Expand 10 after
7444 CHROMIUM_SQLITE_API 7444 CHROMIUM_SQLITE_API
7445 void chromium_sqlite3_initialize_unix_sqlite3_file(sqlite3_file* file); 7445 void chromium_sqlite3_initialize_unix_sqlite3_file(sqlite3_file* file);
7446 CHROMIUM_SQLITE_API 7446 CHROMIUM_SQLITE_API
7447 int chromium_sqlite3_fill_in_unix_sqlite3_file(sqlite3_vfs* vfs, 7447 int chromium_sqlite3_fill_in_unix_sqlite3_file(sqlite3_vfs* vfs,
7448 int fd, 7448 int fd,
7449 int dirfd, 7449 int dirfd,
7450 sqlite3_file* file, 7450 sqlite3_file* file,
7451 const char* fileName, 7451 const char* fileName,
7452 int noLock); 7452 int noLock);
7453 CHROMIUM_SQLITE_API 7453 CHROMIUM_SQLITE_API
7454 int chromium_sqlite3_get_reusable_file_handle(sqlite3_file* file,
7455 const char* fileName,
7456 int flags,
7457 int* fd);
7458 CHROMIUM_SQLITE_API
7459 void chromium_sqlite3_update_reusable_file_handle(sqlite3_file* file, 7454 void chromium_sqlite3_update_reusable_file_handle(sqlite3_file* file,
7460 int fd, 7455 int fd,
7461 int flags); 7456 int flags);
7462 CHROMIUM_SQLITE_API 7457 CHROMIUM_SQLITE_API
7463 void chromium_sqlite3_destroy_reusable_file_handle(sqlite3_file* file); 7458 void chromium_sqlite3_destroy_reusable_file_handle(sqlite3_file* file);
7464 #endif /* _WIN32 */ 7459 #endif /* _WIN32 */
7465 #endif /* CHROMIUM_SQLITE_INTERNALS */ 7460 #endif /* CHROMIUM_SQLITE_INTERNALS */
7466 /* End WebDatabase patch for Chromium */ 7461 /* End WebDatabase patch for Chromium */
7467 7462
7468 /* 7463 /*
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
7586 #define PARTLY_WITHIN 1 /* Object partially overlaps query region */ 7581 #define PARTLY_WITHIN 1 /* Object partially overlaps query region */
7587 #define FULLY_WITHIN 2 /* Object fully contained within query region */ 7582 #define FULLY_WITHIN 2 /* Object fully contained within query region */
7588 7583
7589 7584
7590 #ifdef __cplusplus 7585 #ifdef __cplusplus
7591 } /* end of the 'extern "C"' block */ 7586 } /* end of the 'extern "C"' block */
7592 #endif 7587 #endif
7593 7588
7594 #endif /* ifndef _SQLITE3RTREE_H_ */ 7589 #endif /* ifndef _SQLITE3RTREE_H_ */
7595 7590
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698