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

Unified Diff: third_party/WebKit/Source/modules/webdatabase/SQLResultSet.h

Issue 2631403002: Fix SQLStatementBackend::m_resultSet to use CrossThreadPersistent
Patch Set: fix Created 3 years, 11 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/SQLResultSet.h
diff --git a/third_party/WebKit/Source/modules/webdatabase/SQLResultSet.h b/third_party/WebKit/Source/modules/webdatabase/SQLResultSet.h
index 8b3c9700fc8f86771f3c57315079067122278789..eaf5037bb3c253a7b11d77b774907d0a621870c5 100644
--- a/third_party/WebKit/Source/modules/webdatabase/SQLResultSet.h
+++ b/third_party/WebKit/Source/modules/webdatabase/SQLResultSet.h
@@ -58,7 +58,7 @@ class SQLResultSet final : public GarbageCollected<SQLResultSet>,
private:
SQLResultSet();
- Member<SQLResultSetRowList> m_rows;
+ const Member<SQLResultSetRowList> m_rows;
int64_t m_insertId;
int m_rowsAffected;
bool m_insertIdSet;

Powered by Google App Engine
This is Rietveld 408576698