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

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

Issue 1748183004: [sqlite] Remove recover.c from amalgamation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@zzzzsql_ios_recover_review0
Patch Set: 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
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 */
Scott Hess - ex-Googler 2016/03/02 01:17:37 Moved to recover.h.
-
/* Begin WebDatabase patch for Chromium */
/* Expose some SQLite internals for the WebDatabase vfs.
** DO NOT EXTEND THE USE OF THIS.

Powered by Google App Engine
This is Rietveld 408576698