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

Side by Side Diff: sql/proxy.h

Issue 1324523004: Revert of [sqlite] Respect the gyp and gn component switch. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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 unified diff | Download patch
« no previous file with comments | « sql/connection_unittest.cc ('k') | sql/proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef SQL_PROXY_H_
6 #define SQL_PROXY_H_
7
8 #include "sql/sql_export.h"
9 #include "third_party/sqlite/sqlite3.h"
10
11 // TODO(shess): third_party/sqlite does not track component build correctly, so
12 // each shared library gets a private copy of everything, so sqlite3_* calls
13 // outside of the main sql/ component don't work right. Hack around this by
14 // adding pass-through functions while I land a separate fix for the component
15 // issue.
16
17 // This is only required for tests - if these abilities are desired for
18 // production code, they should probably do obvious things like live in
19 // sql::Connection and use C++ wrappers.
20
21 // http://crbug.com/489444
22
23 namespace sql {
24
25 SQL_EXPORT int sqlite3_create_function_v2(
26 sqlite3 *db,
27 const char *zFunctionName,
28 int nArg,
29 int eTextRep,
30 void *pApp,
31 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
32 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
33 void (*xFinal)(sqlite3_context*),
34 void (*xDestroy)(void*));
35 SQL_EXPORT void *sqlite3_commit_hook(sqlite3*, int(*)(void*), void*);
36
37 } // namespace sql
38
39 #endif // SQL_PROXY_H_
OLDNEW
« no previous file with comments | « sql/connection_unittest.cc ('k') | sql/proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698