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

Unified Diff: Source/modules/webdatabase/SQLStatementBackend.h

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
« no previous file with comments | « Source/modules/webdatabase/SQLStatement.cpp ('k') | Source/modules/webdatabase/SQLStatementBackend.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webdatabase/SQLStatementBackend.h
diff --git a/Source/modules/webdatabase/SQLStatementBackend.h b/Source/modules/webdatabase/SQLStatementBackend.h
index f22b877c8fc3e0b4a14ce5e762f096a91a8c5dbb..b5aed9703f6864324b31808cd670409752515b71 100644
--- a/Source/modules/webdatabase/SQLStatementBackend.h
+++ b/Source/modules/webdatabase/SQLStatementBackend.h
@@ -58,7 +58,7 @@ public:
AbstractSQLStatement* frontend();
virtual PassRefPtr<SQLError> sqlError() const OVERRIDE;
- virtual PassRefPtr<SQLResultSet> sqlResultSet() const OVERRIDE;
+ virtual SQLResultSet* sqlResultSet() const OVERRIDE;
private:
SQLStatementBackend(PassOwnPtr<AbstractSQLStatement>, const String& statement,
@@ -74,7 +74,7 @@ private:
bool m_hasErrorCallback;
RefPtr<SQLError> m_error;
- RefPtr<SQLResultSet> m_resultSet;
+ RefPtrWillBeMember<SQLResultSet> m_resultSet;
int m_permissions;
};
« no previous file with comments | « Source/modules/webdatabase/SQLStatement.cpp ('k') | Source/modules/webdatabase/SQLStatementBackend.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698