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

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

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years 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 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;

Powered by Google App Engine
This is Rietveld 408576698