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

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

Issue 16337010: Remove IDBCursorBackendInterface::deleteFunction (part 2/3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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) 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 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 int32, /* ipc_thread_id */ 397 int32, /* ipc_thread_id */
398 int32, /* ipc_callbacks_id */ 398 int32, /* ipc_callbacks_id */
399 int32) /* n */ 399 int32) /* n */
400 400
401 // WebIDBCursor::prefetchReset() message. 401 // WebIDBCursor::prefetchReset() message.
402 IPC_MESSAGE_CONTROL3(IndexedDBHostMsg_CursorPrefetchReset, 402 IPC_MESSAGE_CONTROL3(IndexedDBHostMsg_CursorPrefetchReset,
403 int32, /* ipc_cursor_id */ 403 int32, /* ipc_cursor_id */
404 int32, /* used_prefetches */ 404 int32, /* used_prefetches */
405 int32) /* used_prefetches */ 405 int32) /* used_prefetches */
406 406
407 // WebIDBCursor::delete() message.
408 IPC_MESSAGE_CONTROL3(IndexedDBHostMsg_CursorDelete,
409 int32, /* ipc_cursor_id */
410 int32, /* ipc_thread_id */
411 int32) /* ipc_callbacks_id */
412
413 // WebIDBFactory::getDatabaseNames() message. 407 // WebIDBFactory::getDatabaseNames() message.
414 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_FactoryGetDatabaseNames, 408 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_FactoryGetDatabaseNames,
415 IndexedDBHostMsg_FactoryGetDatabaseNames_Params) 409 IndexedDBHostMsg_FactoryGetDatabaseNames_Params)
416 410
417 // WebIDBFactory::open() message. 411 // WebIDBFactory::open() message.
418 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_FactoryOpen, 412 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_FactoryOpen,
419 IndexedDBHostMsg_FactoryOpen_Params) 413 IndexedDBHostMsg_FactoryOpen_Params)
420 414
421 // WebIDBFactory::deleteDatabase() message. 415 // WebIDBFactory::deleteDatabase() message.
422 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_FactoryDeleteDatabase, 416 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_FactoryDeleteDatabase,
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
501 495
502 // WebIDBDatabase::commit() message. 496 // WebIDBDatabase::commit() message.
503 IPC_MESSAGE_CONTROL2(IndexedDBHostMsg_DatabaseCommit, 497 IPC_MESSAGE_CONTROL2(IndexedDBHostMsg_DatabaseCommit,
504 int32, /* ipc_database_id */ 498 int32, /* ipc_database_id */
505 int64) /* transaction_id */ 499 int64) /* transaction_id */
506 500
507 // WebIDBDatabase::~WebIDBCursor() message. 501 // WebIDBDatabase::~WebIDBCursor() message.
508 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_CursorDestroyed, 502 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_CursorDestroyed,
509 int32 /* ipc_cursor_id */) 503 int32 /* ipc_cursor_id */)
510 504
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698