Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(493)

Side by Side Diff: content/common/indexed_db/indexed_db_messages.h

Issue 11193003: IndexedDB: Delete old IPC plumbing following WK99097 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/common/indexed_db/indexed_db_dispatcher.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 int32 /* response_id */, 264 int32 /* response_id */,
265 int64 /* existing_version */) 265 int64 /* existing_version */)
266 IPC_MESSAGE_CONTROL5(IndexedDBMsg_CallbacksUpgradeNeeded, 266 IPC_MESSAGE_CONTROL5(IndexedDBMsg_CallbacksUpgradeNeeded,
267 int32, /* thread_id */ 267 int32, /* thread_id */
268 int32, /* response_id */ 268 int32, /* response_id */
269 int32, /* transaction_id */ 269 int32, /* transaction_id */
270 int32, /* database_id */ 270 int32, /* database_id */
271 int64) /* old_version */ 271 int64) /* old_version */
272 272
273 // IDBTransactionCallback message handlers. 273 // IDBTransactionCallback message handlers.
274 // TODO(jsbell): Remove once WK99097 has landed.
275 IPC_MESSAGE_CONTROL2(IndexedDBMsg_TransactionCallbacksAbortLegacy,
276 int32 /* thread_id */,
277 int32 /* transaction_id */)
278 IPC_MESSAGE_CONTROL4(IndexedDBMsg_TransactionCallbacksAbort, 274 IPC_MESSAGE_CONTROL4(IndexedDBMsg_TransactionCallbacksAbort,
279 int32 /* thread_id */, 275 int32 /* thread_id */,
280 int32 /* transaction_id */, 276 int32 /* transaction_id */,
281 int /* code */, 277 int /* code */,
282 string16 /* message */) 278 string16 /* message */)
283 IPC_MESSAGE_CONTROL2(IndexedDBMsg_TransactionCallbacksComplete, 279 IPC_MESSAGE_CONTROL2(IndexedDBMsg_TransactionCallbacksComplete,
284 int32 /* thread_id */, 280 int32 /* thread_id */,
285 int32 /* transaction_id */) 281 int32 /* transaction_id */)
286 282
287 // IDBDatabaseCallback message handlers 283 // IDBDatabaseCallback message handlers
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
546 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort, 542 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort,
547 int32 /* idb_transaction_id */) 543 int32 /* idb_transaction_id */)
548 544
549 // IDBTransaction::DidCompleteTaskEvents() message. 545 // IDBTransaction::DidCompleteTaskEvents() message.
550 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents, 546 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents,
551 int32 /* idb_transaction_id */) 547 int32 /* idb_transaction_id */)
552 548
553 // WebIDBTransaction::~WebIDBTransaction() message. 549 // WebIDBTransaction::~WebIDBTransaction() message.
554 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed, 550 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed,
555 int32 /* idb_transaction_id */) 551 int32 /* idb_transaction_id */)
OLDNEW
« no previous file with comments | « content/common/indexed_db/indexed_db_dispatcher.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698