OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Message definition file, included multiple times, hence no include guard. | 5 // Message definition file, included multiple times, hence no include guard. |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "content/common/indexed_db/indexed_db_key.h" | 9 #include "content/common/indexed_db/indexed_db_key.h" |
10 #include "content/common/indexed_db/indexed_db_key_path.h" | 10 #include "content/common/indexed_db/indexed_db_key_path.h" |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 int32, /* ipc_thread_id */ | 347 int32, /* ipc_thread_id */ |
348 int32, /* ipc_response_id */ | 348 int32, /* ipc_response_id */ |
349 int32, /* ipc_database_id */ | 349 int32, /* ipc_database_id */ |
350 int64, /* old_version */ | 350 int64, /* old_version */ |
351 IndexedDBDatabaseMetadata) /* metadata */ | 351 IndexedDBDatabaseMetadata) /* metadata */ |
352 | 352 |
353 // IDBDatabaseCallback message handlers | 353 // IDBDatabaseCallback message handlers |
354 IPC_MESSAGE_CONTROL2(IndexedDBMsg_DatabaseCallbacksForcedClose, | 354 IPC_MESSAGE_CONTROL2(IndexedDBMsg_DatabaseCallbacksForcedClose, |
355 int32, /* ipc_thread_id */ | 355 int32, /* ipc_thread_id */ |
356 int32) /* ipc_database_id */ | 356 int32) /* ipc_database_id */ |
357 IPC_MESSAGE_CONTROL3(IndexedDBMsg_DatabaseCallbacksVersionChange, | |
358 int32, /* ipc_thread_id */ | |
359 int32, /* ipc_database_id */ | |
360 string16) /* new_version */ | |
361 | |
362 IPC_MESSAGE_CONTROL4(IndexedDBMsg_DatabaseCallbacksIntVersionChange, | 357 IPC_MESSAGE_CONTROL4(IndexedDBMsg_DatabaseCallbacksIntVersionChange, |
363 int32, /* ipc_thread_id */ | 358 int32, /* ipc_thread_id */ |
364 int32, /* ipc_database_id */ | 359 int32, /* ipc_database_id */ |
365 int64, /* old_version */ | 360 int64, /* old_version */ |
366 int64) /* new_version */ | 361 int64) /* new_version */ |
367 IPC_MESSAGE_CONTROL5(IndexedDBMsg_DatabaseCallbacksAbort, | 362 IPC_MESSAGE_CONTROL5(IndexedDBMsg_DatabaseCallbacksAbort, |
368 int32, /* ipc_thread_id */ | 363 int32, /* ipc_thread_id */ |
369 int32, /* ipc_database_id */ | 364 int32, /* ipc_database_id */ |
370 int64, /* transaction_id */ | 365 int64, /* transaction_id */ |
371 int, /* code */ | 366 int, /* code */ |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
501 | 496 |
502 // WebIDBDatabase::commit() message. | 497 // WebIDBDatabase::commit() message. |
503 IPC_MESSAGE_CONTROL2(IndexedDBHostMsg_DatabaseCommit, | 498 IPC_MESSAGE_CONTROL2(IndexedDBHostMsg_DatabaseCommit, |
504 int32, /* ipc_database_id */ | 499 int32, /* ipc_database_id */ |
505 int64) /* transaction_id */ | 500 int64) /* transaction_id */ |
506 | 501 |
507 // WebIDBDatabase::~WebIDBCursor() message. | 502 // WebIDBDatabase::~WebIDBCursor() message. |
508 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_CursorDestroyed, | 503 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_CursorDestroyed, |
509 int32 /* ipc_cursor_id */) | 504 int32 /* ipc_cursor_id */) |
510 | 505 |
OLD | NEW |