Index: content/browser/indexed_db/indexed_db_backing_store.h |
diff --git a/content/browser/indexed_db/indexed_db_backing_store.h b/content/browser/indexed_db/indexed_db_backing_store.h |
index 59e381f2fef0dec3734d3b76050fe198ad9f5b6e..91cf8b41e76143d642b7e79314ec1343a979c7a0 100644 |
--- a/content/browser/indexed_db/indexed_db_backing_store.h |
+++ b/content/browser/indexed_db/indexed_db_backing_store.h |
@@ -347,14 +347,14 @@ class CONTENT_EXPORT IndexedDBBackingStore |
int64 database_id, |
int64 object_store_id, |
const IndexedDBKeyRange& key_range, |
- indexed_db::CursorDirection, |
+ blink::WebIDBCursorDirection, |
leveldb::Status*); |
virtual scoped_ptr<Cursor> OpenObjectStoreCursor( |
IndexedDBBackingStore::Transaction* transaction, |
int64 database_id, |
int64 object_store_id, |
const IndexedDBKeyRange& key_range, |
- indexed_db::CursorDirection, |
+ blink::WebIDBCursorDirection, |
leveldb::Status*); |
virtual scoped_ptr<Cursor> OpenIndexKeyCursor( |
IndexedDBBackingStore::Transaction* transaction, |
@@ -362,7 +362,7 @@ class CONTENT_EXPORT IndexedDBBackingStore |
int64 object_store_id, |
int64 index_id, |
const IndexedDBKeyRange& key_range, |
- indexed_db::CursorDirection, |
+ blink::WebIDBCursorDirection, |
leveldb::Status*); |
virtual scoped_ptr<Cursor> OpenIndexCursor( |
IndexedDBBackingStore::Transaction* transaction, |
@@ -370,7 +370,7 @@ class CONTENT_EXPORT IndexedDBBackingStore |
int64 object_store_id, |
int64 index_id, |
const IndexedDBKeyRange& key_range, |
- indexed_db::CursorDirection, |
+ blink::WebIDBCursorDirection, |
leveldb::Status*); |
class BlobChangeRecord { |