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

Unified Diff: Source/modules/webdatabase/Database.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/DOMWindowWebDatabase.cpp ('k') | Source/modules/webdatabase/Database.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webdatabase/Database.h
diff --git a/Source/modules/webdatabase/Database.h b/Source/modules/webdatabase/Database.h
index 71cd2369edc396970da3dd7fd581318f7f3fcc76..a9f7f03fc85108b6d1342f4ac0ac2181c301ea7a 100644
--- a/Source/modules/webdatabase/Database.h
+++ b/Source/modules/webdatabase/Database.h
@@ -70,17 +70,17 @@ public:
void changeVersion(
const String& oldVersion,
const String& newVersion,
- PassOwnPtrWillBeRawPtr<SQLTransactionCallback>,
- PassOwnPtrWillBeRawPtr<SQLTransactionErrorCallback>,
- PassOwnPtrWillBeRawPtr<VoidCallback> successCallback);
+ SQLTransactionCallback*,
+ SQLTransactionErrorCallback*,
+ VoidCallback* successCallback);
void transaction(
- PassOwnPtrWillBeRawPtr<SQLTransactionCallback>,
- PassOwnPtrWillBeRawPtr<SQLTransactionErrorCallback>,
- PassOwnPtrWillBeRawPtr<VoidCallback> successCallback);
+ SQLTransactionCallback*,
+ SQLTransactionErrorCallback*,
+ VoidCallback* successCallback);
void readTransaction(
- PassOwnPtrWillBeRawPtr<SQLTransactionCallback>,
- PassOwnPtrWillBeRawPtr<SQLTransactionErrorCallback>,
- PassOwnPtrWillBeRawPtr<VoidCallback> successCallback);
+ SQLTransactionCallback*,
+ SQLTransactionErrorCallback*,
+ VoidCallback* successCallback);
bool opened() const { return m_opened; }
bool isNew() const { return m_new; }
@@ -132,9 +132,9 @@ private:
bool getActualVersionForTransaction(String& version);
void runTransaction(
- PassOwnPtrWillBeRawPtr<SQLTransactionCallback>,
- PassOwnPtrWillBeRawPtr<SQLTransactionErrorCallback>,
- PassOwnPtrWillBeRawPtr<VoidCallback> successCallback,
+ SQLTransactionCallback*,
+ SQLTransactionErrorCallback*,
+ VoidCallback* successCallback,
bool readOnly,
const ChangeVersionData* = 0);
Vector<String> performGetTableNames();
« no previous file with comments | « Source/modules/webdatabase/DOMWindowWebDatabase.cpp ('k') | Source/modules/webdatabase/Database.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698