| Index: content/browser/indexed_db/indexed_db_fake_backing_store.h
|
| diff --git a/content/browser/indexed_db/indexed_db_fake_backing_store.h b/content/browser/indexed_db/indexed_db_fake_backing_store.h
|
| index 1529c9f0704c84d2df080c28224c8ef12ec8d362..ff857e42d4ee75209976572d8c24d158428b0d73 100644
|
| --- a/content/browser/indexed_db/indexed_db_fake_backing_store.h
|
| +++ b/content/browser/indexed_db/indexed_db_fake_backing_store.h
|
| @@ -108,14 +108,14 @@ class IndexedDBFakeBackingStore : public IndexedDBBackingStore {
|
| int64 database_id,
|
| int64 object_store_id,
|
| const IndexedDBKeyRange& key_range,
|
| - indexed_db::CursorDirection,
|
| + blink::Direction,
|
| leveldb::Status*) OVERRIDE;
|
| virtual scoped_ptr<Cursor> OpenObjectStoreCursor(
|
| Transaction* transaction,
|
| int64 database_id,
|
| int64 object_store_id,
|
| const IndexedDBKeyRange& key_range,
|
| - indexed_db::CursorDirection,
|
| + blink::Direction,
|
| leveldb::Status*) OVERRIDE;
|
| virtual scoped_ptr<Cursor> OpenIndexKeyCursor(
|
| Transaction* transaction,
|
| @@ -123,14 +123,14 @@ class IndexedDBFakeBackingStore : public IndexedDBBackingStore {
|
| int64 object_store_id,
|
| int64 index_id,
|
| const IndexedDBKeyRange& key_range,
|
| - indexed_db::CursorDirection,
|
| + blink::Direction,
|
| leveldb::Status*) OVERRIDE;
|
| virtual scoped_ptr<Cursor> OpenIndexCursor(Transaction* transaction,
|
| int64 database_id,
|
| int64 object_store_id,
|
| int64 index_id,
|
| const IndexedDBKeyRange& key_range,
|
| - indexed_db::CursorDirection,
|
| + blink::Direction,
|
| leveldb::Status*) OVERRIDE;
|
|
|
| class FakeTransaction : public IndexedDBBackingStore::Transaction {
|
|
|