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

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

Issue 10383221: IndexedDB: Remove IDBIndex.storeName property (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
370 370
371 // WebIDBDatabase::~WebIDBDatabase() message. 371 // WebIDBDatabase::~WebIDBDatabase() message.
372 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_DatabaseDestroyed, 372 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_DatabaseDestroyed,
373 int32 /* idb_database_id */) 373 int32 /* idb_database_id */)
374 374
375 // WebIDBIndex::name() message. 375 // WebIDBIndex::name() message.
376 IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_IndexName, 376 IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_IndexName,
377 int32, /* idb_index_id */ 377 int32, /* idb_index_id */
378 string16 /* name */) 378 string16 /* name */)
379 379
380 // WebIDBIndex::storeName() message.
381 IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_IndexStoreName,
382 int32, /* idb_index_id */
383 string16 /* store_name */)
384
385 // WebIDBIndex::keyPath() message. 380 // WebIDBIndex::keyPath() message.
386 IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_IndexKeyPath, 381 IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_IndexKeyPath,
387 int32, /* idb_index_id */ 382 int32, /* idb_index_id */
388 content::IndexedDBKeyPath /* key_path */) 383 content::IndexedDBKeyPath /* key_path */)
389 384
390 // WebIDBIndex::unique() message. 385 // WebIDBIndex::unique() message.
391 IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_IndexUnique, 386 IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_IndexUnique,
392 int32, /* idb_index_id */ 387 int32, /* idb_index_id */
393 bool /* unique */) 388 bool /* unique */)
394 389
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort, 538 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort,
544 int32 /* idb_transaction_id */) 539 int32 /* idb_transaction_id */)
545 540
546 // IDBTransaction::DidCompleteTaskEvents() message. 541 // IDBTransaction::DidCompleteTaskEvents() message.
547 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents, 542 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents,
548 int32 /* idb_transaction_id */) 543 int32 /* idb_transaction_id */)
549 544
550 // WebIDBTransaction::~WebIDBTransaction() message. 545 // WebIDBTransaction::~WebIDBTransaction() message.
551 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed, 546 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed,
552 int32 /* idb_transaction_id */) 547 int32 /* idb_transaction_id */)
OLDNEW
« no previous file with comments | « content/browser/in_process_webkit/indexed_db_dispatcher_host.cc ('k') | content/common/indexed_db/proxy_webidbindex_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698