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

Unified Diff: third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteStatement.cpp

Issue 2700123003: DO NOT COMMIT: Results of running old (current) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 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
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();

Powered by Google App Engine
This is Rietveld 408576698