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 cf2ddb584b913165241726f4183411a44ad279e0..b7e2c3394422e478fb37376b43c85616f8c9f1b7 100644 |
--- a/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteStatement.cpp |
+++ b/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteStatement.cpp |
@@ -100,8 +100,8 @@ int SQLiteStatement::prepare() { |
// Need to pass non-stack |const char*| and |sqlite3_stmt*| to avoid race |
// with Oilpan stack scanning. |
- std::unique_ptr<const char*> tail = wrapUnique(new const char*); |
- std::unique_ptr<sqlite3_stmt*> statement = wrapUnique(new sqlite3_stmt*); |
+ std::unique_ptr<const char*> tail = WTF::wrapUnique(new const char*); |
+ std::unique_ptr<sqlite3_stmt*> statement = WTF::wrapUnique(new sqlite3_stmt*); |
*tail = nullptr; |
*statement = nullptr; |
int error; |