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

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

Issue 12939002: IndexedDB: Remove unused plumbing for string version changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
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