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

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

Issue 563703002: Oilpan: Enable oilpan for callback classes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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/SQLCallbackWrapper.h ('k') | Source/modules/webdatabase/SQLStatement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webdatabase/SQLStatement.h
diff --git a/Source/modules/webdatabase/SQLStatement.h b/Source/modules/webdatabase/SQLStatement.h
index 9b878df276310d427210f61d7792f15356bea56f..0b81f005a1cafa48f65b805f35670d5c9aecc6a5 100644
--- a/Source/modules/webdatabase/SQLStatement.h
+++ b/Source/modules/webdatabase/SQLStatement.h
@@ -46,7 +46,7 @@ class SQLTransaction;
class SQLStatement FINAL : public NoBaseWillBeGarbageCollectedFinalized<SQLStatement> {
public:
static PassOwnPtrWillBeRawPtr<SQLStatement> create(Database*,
- PassOwnPtrWillBeRawPtr<SQLStatementCallback>, PassOwnPtrWillBeRawPtr<SQLStatementErrorCallback>);
+ SQLStatementCallback*, SQLStatementErrorCallback*);
~SQLStatement();
void trace(Visitor*);
@@ -58,7 +58,7 @@ public:
bool hasErrorCallback();
private:
- SQLStatement(Database*, PassOwnPtrWillBeRawPtr<SQLStatementCallback>, PassOwnPtrWillBeRawPtr<SQLStatementErrorCallback>);
+ SQLStatement(Database*, SQLStatementCallback*, SQLStatementErrorCallback*);
// The SQLStatementBackend owns the SQLStatement. Hence, the backend is
// guaranteed to be outlive the SQLStatement, and it is safe for us to refer
« no previous file with comments | « Source/modules/webdatabase/SQLCallbackWrapper.h ('k') | Source/modules/webdatabase/SQLStatement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698