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

Unified Diff: Source/modules/webdatabase/SQLStatementSync.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/SQLStatementBackend.cpp ('k') | Source/modules/webdatabase/SQLStatementSync.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webdatabase/SQLStatementSync.h
diff --git a/Source/modules/webdatabase/SQLStatementSync.h b/Source/modules/webdatabase/SQLStatementSync.h
index d8922125e0064ede65a536e714279a415e5b3c69..8f23593d08e2b327e27a575ca50033be3498b287 100644
--- a/Source/modules/webdatabase/SQLStatementSync.h
+++ b/Source/modules/webdatabase/SQLStatementSync.h
@@ -31,6 +31,7 @@
#ifndef SQLStatementSync_h
#define SQLStatementSync_h
+#include "heap/Handle.h"
#include "modules/webdatabase/sqlite/SQLValue.h"
#include "modules/webdatabase/DatabaseBasicTypes.h"
#include "wtf/Forward.h"
@@ -47,7 +48,7 @@ class SQLStatementSync {
public:
SQLStatementSync(const String& statement, const Vector<SQLValue>& arguments, int permissions);
- PassRefPtr<SQLResultSet> execute(DatabaseSync*, ExceptionState&);
+ PassRefPtrWillBeRawPtr<SQLResultSet> execute(DatabaseSync*, ExceptionState&);
private:
String m_statement;
« no previous file with comments | « Source/modules/webdatabase/SQLStatementBackend.cpp ('k') | Source/modules/webdatabase/SQLStatementSync.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698