| Index: content/child/indexed_db/indexed_db_dispatcher.h
|
| diff --git a/content/child/indexed_db/indexed_db_dispatcher.h b/content/child/indexed_db/indexed_db_dispatcher.h
|
| index c4159bec5d565c6fbf3afd9a380bece201c81cb8..7350afef666521e245d289fc85e59d49ca6425ff 100644
|
| --- a/content/child/indexed_db/indexed_db_dispatcher.h
|
| +++ b/content/child/indexed_db/indexed_db_dispatcher.h
|
| @@ -17,9 +17,8 @@
|
| #include "ipc/ipc_sync_message_filter.h"
|
| #include "third_party/WebKit/public/platform/WebBlobInfo.h"
|
| #include "third_party/WebKit/public/platform/WebIDBCallbacks.h"
|
| -#include "third_party/WebKit/public/platform/WebIDBCursor.h"
|
| -#include "third_party/WebKit/public/platform/WebIDBDatabase.h"
|
| #include "third_party/WebKit/public/platform/WebIDBDatabaseCallbacks.h"
|
| +#include "third_party/WebKit/public/platform/WebIDBTypes.h"
|
|
|
| struct IndexedDBDatabaseMetadata;
|
| struct IndexedDBMsg_CallbacksSuccessCursorContinue_Params;
|
| @@ -117,7 +116,7 @@ class CONTENT_EXPORT IndexedDBDispatcher : public WorkerTaskRunner::Observer {
|
| int64 transaction_id,
|
| blink::WebIDBDatabaseCallbacks* database_callbacks_ptr,
|
| blink::WebVector<long long> object_store_ids,
|
| - blink::WebIDBDatabase::TransactionMode mode);
|
| + blink::WebIDBTransactionMode mode);
|
|
|
| void RequestIDBDatabaseGet(int32 ipc_database_id,
|
| int64 transaction_id,
|
| @@ -134,7 +133,7 @@ class CONTENT_EXPORT IndexedDBDispatcher : public WorkerTaskRunner::Observer {
|
| const blink::WebData& value,
|
| const blink::WebVector<blink::WebBlobInfo>& web_blob_info,
|
| const IndexedDBKey& key,
|
| - blink::WebIDBDatabase::PutMode put_mode,
|
| + blink::WebIDBPutMode put_mode,
|
| blink::WebIDBCallbacks* callbacks,
|
| const blink::WebVector<long long>& index_ids,
|
| const blink::WebVector<blink::WebVector<blink::WebIDBKey> >& index_keys);
|
| @@ -144,9 +143,9 @@ class CONTENT_EXPORT IndexedDBDispatcher : public WorkerTaskRunner::Observer {
|
| int64 object_store_id,
|
| int64 index_id,
|
| const IndexedDBKeyRange& key_range,
|
| - blink::WebIDBCursor::Direction direction,
|
| + blink::WebIDBCursorDirection direction,
|
| bool key_only,
|
| - blink::WebIDBDatabase::TaskType task_type,
|
| + blink::WebIDBTaskType task_type,
|
| blink::WebIDBCallbacks* callbacks);
|
|
|
| void RequestIDBDatabaseCount(int32 ipc_database_id,
|
|
|