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

Unified Diff: third_party/sqlite/amalgamation/sqlite3.h

Issue 1700483002: [sqlite] iOS running recover virtual table. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@zzsql_recover_handle_review2
Patch Set: Manually find sql/test/data for now. Created 4 years, 10 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sql/recovery_unittest.cc ('k') | third_party/sqlite/amalgamation/sqlite3.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/amalgamation/sqlite3.h
diff --git a/third_party/sqlite/amalgamation/sqlite3.h b/third_party/sqlite/amalgamation/sqlite3.h
index d69310141ddfed883a7c014fd6cd044939d6054f..7ca339843a62f59e7cc26d6d2b6d9d362e532e6f 100644
--- a/third_party/sqlite/amalgamation/sqlite3.h
+++ b/third_party/sqlite/amalgamation/sqlite3.h
@@ -7411,22 +7411,6 @@ SQLITE_API int SQLITE_STDCALL sqlite3_strnicmp(const char *, const char *, int);
*/
SQLITE_API int SQLITE_STDCALL sqlite3_strglob(const char *zGlob, const char *zStr);
-/* Begin recover virtual table patch for Chromium */
-/* Our patches don't conform to SQLite's amalgamation processing. Hack it. */
-#ifndef CHROMIUM_SQLITE_API
-#define CHROMIUM_SQLITE_API SQLITE_API
-#endif
-/*
-** Call to initialize the recover virtual-table modules (see recover.c).
-**
-** This could be loaded by default in main.c, but that would make the
-** virtual table available to Web SQL. Breaking it out allows only
-** selected users to enable it (currently sql/recovery.cc).
-*/
-CHROMIUM_SQLITE_API
-int recoverVtableInit(sqlite3 *db);
-/* End recover virtual table patch for Chromium */
-
/* Begin WebDatabase patch for Chromium */
/* Expose some SQLite internals for the WebDatabase vfs.
** DO NOT EXTEND THE USE OF THIS.
« no previous file with comments | « sql/recovery_unittest.cc ('k') | third_party/sqlite/amalgamation/sqlite3.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698