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

Unified Diff: sql/proxy.cc

Issue 1306863006: [sqlite] Respect the gyp and gn component switch. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Back to final CL to land. Created 5 years, 4 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/proxy.h ('k') | sql/sql.gyp » ('j') | third_party/sqlite/BUILD.gn » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sql/proxy.cc
diff --git a/sql/proxy.cc b/sql/proxy.cc
deleted file mode 100644
index 51048122c3e626942c7a0549b55ea39af01ffc0f..0000000000000000000000000000000000000000
--- a/sql/proxy.cc
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "sql/proxy.h"
-
-namespace sql {
-
-int sqlite3_create_function_v2(
- sqlite3 *db,
- const char *zFunctionName,
- int nArg,
- int eTextRep,
- void *pApp,
- void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
- void (*xStep)(sqlite3_context*,int,sqlite3_value**),
- void (*xFinal)(sqlite3_context*),
- void (*xDestroy)(void*)) {
- return ::sqlite3_create_function_v2(
- db, zFunctionName, nArg, eTextRep, pApp,
- xFunc, xStep, xFinal, xDestroy);
-}
-
-void *sqlite3_commit_hook(sqlite3* db, int(*func)(void*), void* arg) {
- return ::sqlite3_commit_hook(db, func, arg);
-}
-
-} // namespace sql
« no previous file with comments | « sql/proxy.h ('k') | sql/sql.gyp » ('j') | third_party/sqlite/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698