Index: content/browser/indexed_db/indexed_db_cursor.h |
diff --git a/content/browser/indexed_db/indexed_db_cursor.h b/content/browser/indexed_db/indexed_db_cursor.h |
index 290d92050609c6fd42fa40e797823ff601827354..ad0e4133548028c77528d4e1242a6d8dc823caf1 100644 |
--- a/content/browser/indexed_db/indexed_db_cursor.h |
+++ b/content/browser/indexed_db/indexed_db_cursor.h |
@@ -42,12 +42,11 @@ class CONTENT_EXPORT IndexedDBCursor |
} |
// IndexedDBCursor |
- void Advance(uint32 count, |
- scoped_refptr<IndexedDBCallbacksWrapper> callbacks); |
+ void Advance(uint32 count, scoped_refptr<IndexedDBCallbacks> callbacks); |
void ContinueFunction(scoped_ptr<IndexedDBKey> key, |
- scoped_refptr<IndexedDBCallbacksWrapper> callbacks); |
+ scoped_refptr<IndexedDBCallbacks> callbacks); |
void PrefetchContinue(int number_to_fetch, |
- scoped_refptr<IndexedDBCallbacksWrapper> callbacks); |
+ scoped_refptr<IndexedDBCallbacks> callbacks); |
void PrefetchReset(int used_prefetches, int unused_prefetches); |
const IndexedDBKey& key() const { return cursor_->key(); } |