| Index: content/child/indexed_db/webidbdatabase_impl.cc
|
| diff --git a/content/child/indexed_db/webidbdatabase_impl.cc b/content/child/indexed_db/webidbdatabase_impl.cc
|
| index 757d19509c963b5727276bb1e725e5fcf0ea12f4..94e4348509cf6b2d493eef4b16607c10b99fa486 100644
|
| --- a/content/child/indexed_db/webidbdatabase_impl.cc
|
| +++ b/content/child/indexed_db/webidbdatabase_impl.cc
|
| @@ -78,7 +78,7 @@ void WebIDBDatabaseImpl::createTransaction(
|
| long long transaction_id,
|
| WebIDBDatabaseCallbacks* callbacks,
|
| const WebVector<long long>& object_store_ids,
|
| - WebIDBDatabase::TransactionMode mode) {
|
| + blink::WebIDBTransactionMode mode) {
|
| IndexedDBDispatcher* dispatcher =
|
| IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get());
|
| dispatcher->RequestIDBDatabaseCreateTransaction(
|
| @@ -114,7 +114,7 @@ void WebIDBDatabaseImpl::put(long long transaction_id,
|
| const blink::WebData& value,
|
| const blink::WebVector<WebBlobInfo>& web_blob_info,
|
| const WebIDBKey& key,
|
| - PutMode put_mode,
|
| + blink::WebIDBPutMode put_mode,
|
| WebIDBCallbacks* callbacks,
|
| const WebVector<long long>& web_index_ids,
|
| const WebVector<WebIndexKeys>& web_index_keys) {
|
| @@ -172,9 +172,9 @@ void WebIDBDatabaseImpl::openCursor(long long transaction_id,
|
| long long object_store_id,
|
| long long index_id,
|
| const WebIDBKeyRange& key_range,
|
| - WebIDBCursor::Direction direction,
|
| + blink::WebIDBCursorDirection direction,
|
| bool key_only,
|
| - TaskType task_type,
|
| + blink::WebIDBTaskType task_type,
|
| WebIDBCallbacks* callbacks) {
|
| IndexedDBDispatcher* dispatcher =
|
| IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get());
|
|
|