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

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: Include/Forward Declare tidying 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..9dcae0d0eaff9dc4afe841ccb09b6e436de0c59b 100644
--- a/content/browser/indexed_db/indexed_db_cursor.h
+++ b/content/browser/indexed_db/indexed_db_cursor.h
@@ -16,7 +16,6 @@
namespace content {
-class IndexedDBDatabase;
class IndexedDBTransaction;
class CONTENT_EXPORT IndexedDBCursor
@@ -42,12 +41,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(); }
« no previous file with comments | « content/browser/indexed_db/indexed_db_callbacks_wrapper.cc ('k') | content/browser/indexed_db/indexed_db_cursor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698