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

Unified Diff: Source/modules/webdatabase/SQLStatement.cpp

Issue 207453006: Oilpan: Prepare to move SQLResultSet and SQLResultSetRowList to oilpan heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove setValid Created 6 years, 9 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: Source/modules/webdatabase/SQLStatement.cpp
diff --git a/Source/modules/webdatabase/SQLStatement.cpp b/Source/modules/webdatabase/SQLStatement.cpp
index 0d77191d5ffaf08c224c94ff08494288d530e217..1d883fde2606b5b3fb52487f02f9cc7c73c12db1 100644
--- a/Source/modules/webdatabase/SQLStatement.cpp
+++ b/Source/modules/webdatabase/SQLStatement.cpp
@@ -87,7 +87,7 @@ bool SQLStatement::performCallback(SQLTransaction* transaction)
if (errorCallback)
callbackError = errorCallback->handleEvent(transaction, error.get());
} else if (callback) {
- RefPtr<SQLResultSet> resultSet = m_backend->sqlResultSet();
+ RefPtrWillBeRawPtr<SQLResultSet> resultSet = m_backend->sqlResultSet();
callbackError = !callback->handleEvent(transaction, resultSet.get());
}
« no previous file with comments | « Source/modules/webdatabase/SQLResultSetRowList.idl ('k') | Source/modules/webdatabase/SQLStatementBackend.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698