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

Unified Diff: Source/modules/indexeddb/IDBDatabaseCallbacks.h

Issue 176853004: Oilpan: move core/fileapi to oilpan's heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased Created 6 years, 10 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/indexeddb/IDBDatabase.cpp ('k') | Source/modules/indexeddb/IDBDatabaseCallbacks.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBDatabaseCallbacks.h
diff --git a/Source/modules/indexeddb/IDBDatabaseCallbacks.h b/Source/modules/indexeddb/IDBDatabaseCallbacks.h
index 5f3c43b1b164099cbaca2751766c2d99cf880cb8..f4a2d70313fe316293e56b3a0e8bc08d91304543 100644
--- a/Source/modules/indexeddb/IDBDatabaseCallbacks.h
+++ b/Source/modules/indexeddb/IDBDatabaseCallbacks.h
@@ -26,6 +26,7 @@
#ifndef IDBDatabaseCallbacks_h
#define IDBDatabaseCallbacks_h
+#include "heap/Handle.h"
#include "wtf/PassRefPtr.h"
#include "wtf/RefCounted.h"
@@ -43,7 +44,7 @@ public:
virtual void onForcedClose();
virtual void onVersionChange(int64_t oldVersion, int64_t newVersion);
- virtual void onAbort(int64_t transactionId, PassRefPtr<DOMError>);
+ virtual void onAbort(int64_t transactionId, PassRefPtrWillBeRawPtr<DOMError>);
virtual void onComplete(int64_t transactionId);
void connect(IDBDatabase*);
« no previous file with comments | « Source/modules/indexeddb/IDBDatabase.cpp ('k') | Source/modules/indexeddb/IDBDatabaseCallbacks.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698