summaryrefslogtreecommitdiffstats
path: root/chrome/common/sqlite_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/sqlite_utils.h')
-rw-r--r--chrome/common/sqlite_utils.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/common/sqlite_utils.h b/chrome/common/sqlite_utils.h
index 8718cee..7b38d2f 100644
--- a/chrome/common/sqlite_utils.h
+++ b/chrome/common/sqlite_utils.h
@@ -5,6 +5,7 @@
#ifndef CHROME_COMMON_SQLITEUTILS_H_
#define CHROME_COMMON_SQLITEUTILS_H_
+#include <string>
#include <vector>
#include "base/basictypes.h"
@@ -64,8 +65,8 @@ class SQLTransaction {
virtual int BeginCommand(const char* command);
virtual int EndCommand(const char* command);
- bool began_;
sqlite3* db_;
+ bool began_;
DISALLOW_COPY_AND_ASSIGN(SQLTransaction);
};