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 7c1491aff7f4aedfee0a234fe07dd93a82757468..a0f42000b0c2a446507d6d1337e3e4ceed106f61 100644 |
--- a/content/browser/indexed_db/indexed_db_cursor.h |
+++ b/content/browser/indexed_db/indexed_db_cursor.h |
@@ -13,6 +13,7 @@ |
#include "content/browser/indexed_db/indexed_db_backing_store.h" |
#include "content/browser/indexed_db/indexed_db_database.h" |
#include "content/common/indexed_db/indexed_db_key_range.h" |
+#include "third_party/WebKit/public/platform/WebIDBTypes.h" |
namespace content { |
@@ -23,7 +24,7 @@ class CONTENT_EXPORT IndexedDBCursor |
public: |
IndexedDBCursor(scoped_ptr<IndexedDBBackingStore::Cursor> cursor, |
indexed_db::CursorType cursor_type, |
- IndexedDBDatabase::TaskType task_type, |
+ blink::WebIDBTaskType task_type, |
IndexedDBTransaction* transaction); |
void Advance(uint32 count, scoped_refptr<IndexedDBCallbacks> callbacks); |
@@ -59,7 +60,7 @@ class CONTENT_EXPORT IndexedDBCursor |
~IndexedDBCursor(); |
- IndexedDBDatabase::TaskType task_type_; |
+ blink::WebIDBTaskType task_type_; |
indexed_db::CursorType cursor_type_; |
const scoped_refptr<IndexedDBTransaction> transaction_; |