| 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 6720ee9b5d0c40acbcad97aad85775a8b16f5777..9d561c7eabe3e264e7029723e33e72a3ee61fc5c 100644
|
| --- a/content/browser/indexed_db/indexed_db_backing_store.h
|
| +++ b/content/browser/indexed_db/indexed_db_backing_store.h
|
| @@ -27,6 +27,7 @@
|
| #include "content/common/indexed_db/indexed_db_key_path.h"
|
| #include "content/common/indexed_db/indexed_db_key_range.h"
|
| #include "third_party/leveldatabase/src/include/leveldb/status.h"
|
| +#include "third_party/WebKit/public/platform/WebIDBTypes.h"
|
| #include "url/gurl.h"
|
| #include "webkit/browser/blob/blob_data_handle.h"
|
|
|
| @@ -344,14 +345,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,
|
| @@ -359,7 +360,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,
|
| @@ -367,7 +368,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 {
|
|
|