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

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

Issue 311273005: Oilpan: Prepare to move AbstractSQLStatement, SQLStatement, and SQLCallbackWrapper<T> to Oilpan hea… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 fc6e20208d20f78132b6f3b8de5a7d04ee7a7fa4..b77f61cb7b663ff5e6ca069533c13998b53fa453 100644
--- a/Source/modules/webdatabase/SQLStatementBackend.h
+++ b/Source/modules/webdatabase/SQLStatementBackend.h
@@ -44,7 +44,7 @@ class SQLTransactionBackend;
class SQLStatementBackend FINAL : public AbstractSQLStatementBackend {
public:
- static PassRefPtrWillBeRawPtr<SQLStatementBackend> create(PassOwnPtr<AbstractSQLStatement>,
+ static PassRefPtrWillBeRawPtr<SQLStatementBackend> create(PassOwnPtrWillBeRawPtr<AbstractSQLStatement>,
const String& sqlStatement, const Vector<SQLValue>& arguments, int permissions);
virtual void trace(Visitor*) OVERRIDE;
@@ -61,13 +61,13 @@ public:
virtual SQLResultSet* sqlResultSet() const OVERRIDE;
private:
- SQLStatementBackend(PassOwnPtr<AbstractSQLStatement>, const String& statement,
+ SQLStatementBackend(PassOwnPtrWillBeRawPtr<AbstractSQLStatement>, const String& statement,
const Vector<SQLValue>& arguments, int permissions);
void setFailureDueToQuota(DatabaseBackend*);
void clearFailureDueToQuota();
- OwnPtr<AbstractSQLStatement> m_frontend;
+ OwnPtrWillBeMember<AbstractSQLStatement> m_frontend;
String m_statement;
Vector<SQLValue> m_arguments;
bool m_hasCallback;
« 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