summaryrefslogtreecommitdiffstats
path: root/chrome/common/sqlite_compiled_statement.h
diff options
context:
space:
mode:
authorerg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-05 23:46:02 +0000
committererg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-05 23:46:02 +0000
commit2858bbf9099f835325422009c5945e9b26a97d42 (patch)
tree4751ec07dc414566f15d9995386b73805facfca0 /chrome/common/sqlite_compiled_statement.h
parente22ddddb19c659dce909396cb2320979cbedc5d2 (diff)
downloadchromium_src-2858bbf9099f835325422009c5945e9b26a97d42.zip
chromium_src-2858bbf9099f835325422009c5945e9b26a97d42.tar.gz
chromium_src-2858bbf9099f835325422009c5945e9b26a97d42.tar.bz2
FBTF: Continue fixing nits found by my automated source scanner.
(~1.3 megs off Debug linux .a files) BUG=none TEST=compiles Review URL: http://codereview.chromium.org/3556013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61587 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/sqlite_compiled_statement.h')
-rw-r--r--chrome/common/sqlite_compiled_statement.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/chrome/common/sqlite_compiled_statement.h b/chrome/common/sqlite_compiled_statement.h
index edc60de..81f09a2 100644
--- a/chrome/common/sqlite_compiled_statement.h
+++ b/chrome/common/sqlite_compiled_statement.h
@@ -21,11 +21,9 @@ class SQLStatement;
class SqliteStatementCache {
public:
// You must call set_db before anything else if you use this constructor.
- SqliteStatementCache() : db_(NULL) {
- }
+ SqliteStatementCache();
- explicit SqliteStatementCache(sqlite3* db) : db_(db) {
- }
+ explicit SqliteStatementCache(sqlite3* db);
// This object must be deleted before the sqlite connection it is associated
// with. Otherwise, sqlite seems to keep the file open because there are open