Index: third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteStatement.cpp |
diff --git a/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteStatement.cpp b/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteStatement.cpp |
index 251daa09566d16b9d0b2ae193962f3cfa92f2cee..8a8668e105d1416e1d129aad520313d2748e3560 100644 |
--- a/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteStatement.cpp |
+++ b/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteStatement.cpp |
@@ -25,6 +25,7 @@ |
#include "modules/webdatabase/sqlite/SQLiteStatement.h" |
+#include <memory> |
#include "modules/webdatabase/sqlite/SQLLog.h" |
#include "modules/webdatabase/sqlite/SQLValue.h" |
#include "platform/heap/SafePoint.h" |
@@ -32,7 +33,6 @@ |
#include "wtf/Assertions.h" |
#include "wtf/PtrUtil.h" |
#include "wtf/text/CString.h" |
-#include <memory> |
// SQLite 3.6.16 makes sqlite3_prepare_v2 automatically retry preparing the |
// statement once if the database scheme has changed. We rely on this behavior. |
@@ -79,11 +79,7 @@ int restrictError(int error) { |
namespace blink { |
SQLiteStatement::SQLiteStatement(SQLiteDatabase& db, const String& sql) |
- : m_database(db), |
- m_query(sql), |
- m_statement(0) |
-{ |
-} |
+ : m_database(db), m_query(sql), m_statement(0) {} |
SQLiteStatement::~SQLiteStatement() { |
finalize(); |