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

Unified Diff: content/browser/indexed_db/indexed_db_cursor.h

Issue 18241003: IndexedDB: Remove IndexedDBCallbacksWrapper (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
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(); }

Powered by Google App Engine
This is Rietveld 408576698