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

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

Issue 7550055: Remove idb transaction callbacks onTimeout stuff that was removed from the spec. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove message definition Created 9 years, 4 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
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_key.h" 9 #include "content/common/indexed_db_key.h"
10 #include "content/common/indexed_db_param_traits.h" 10 #include "content/common/indexed_db_param_traits.h"
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 int /* code */, 156 int /* code */,
157 string16 /* message */) 157 string16 /* message */)
158 IPC_MESSAGE_CONTROL1(IndexedDBMsg_CallbacksBlocked, 158 IPC_MESSAGE_CONTROL1(IndexedDBMsg_CallbacksBlocked,
159 int32 /* response_id */) 159 int32 /* response_id */)
160 160
161 // IDBTransactionCallback message handlers. 161 // IDBTransactionCallback message handlers.
162 IPC_MESSAGE_CONTROL1(IndexedDBMsg_TransactionCallbacksAbort, 162 IPC_MESSAGE_CONTROL1(IndexedDBMsg_TransactionCallbacksAbort,
163 int32 /* transaction_id */) 163 int32 /* transaction_id */)
164 IPC_MESSAGE_CONTROL1(IndexedDBMsg_TransactionCallbacksComplete, 164 IPC_MESSAGE_CONTROL1(IndexedDBMsg_TransactionCallbacksComplete,
165 int32 /* transaction_id */) 165 int32 /* transaction_id */)
166 IPC_MESSAGE_CONTROL1(IndexedDBMsg_TransactionCallbacksTimeout,
167 int32 /* transaction_id */)
168 166
169 IPC_MESSAGE_CONTROL2(IndexedDBMsg_DatabaseCallbacksVersionChange, 167 IPC_MESSAGE_CONTROL2(IndexedDBMsg_DatabaseCallbacksVersionChange,
170 int32, /* database_id */ 168 int32, /* database_id */
171 string16) /* new_version */ 169 string16) /* new_version */
172 170
173 // Indexed DB messages sent from the renderer to the browser. 171 // Indexed DB messages sent from the renderer to the browser.
174 172
175 // WebIDBCursor::direction() message. 173 // WebIDBCursor::direction() message.
176 IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_CursorDirection, 174 IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_CursorDirection,
177 int32, /* idb_cursor_id */ 175 int32, /* idb_cursor_id */
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
424 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort, 422 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort,
425 int32 /* idb_transaction_id */) 423 int32 /* idb_transaction_id */)
426 424
427 // IDBTransaction::DidCompleteTaskEvents() message. 425 // IDBTransaction::DidCompleteTaskEvents() message.
428 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents, 426 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents,
429 int32 /* idb_transaction_id */) 427 int32 /* idb_transaction_id */)
430 428
431 // WebIDBTransaction::~WebIDBTransaction() message. 429 // WebIDBTransaction::~WebIDBTransaction() message.
432 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed, 430 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed,
433 int32 /* idb_transaction_id */) 431 int32 /* idb_transaction_id */)
OLDNEW
« no previous file with comments | « content/browser/in_process_webkit/indexed_db_transaction_callbacks.cc ('k') | content/renderer/indexed_db_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698