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

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

Issue 1147433002: IndexedDB: Added IDBIndex.getAll() implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tweaked getAll comments in indexed_db_database.cc Created 5 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
« no previous file with comments | « content/child/indexed_db/webidbdatabase_impl.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 <string> 7 #include <string>
8 #include <utility> 8 #include <utility>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 IPC_STRUCT_BEGIN(IndexedDBHostMsg_DatabaseGetAll_Params) 129 IPC_STRUCT_BEGIN(IndexedDBHostMsg_DatabaseGetAll_Params)
130 IPC_STRUCT_MEMBER(int32, ipc_thread_id) 130 IPC_STRUCT_MEMBER(int32, ipc_thread_id)
131 // The id any response should contain. 131 // The id any response should contain.
132 IPC_STRUCT_MEMBER(int32, ipc_callbacks_id) 132 IPC_STRUCT_MEMBER(int32, ipc_callbacks_id)
133 // The database the object store belongs to. 133 // The database the object store belongs to.
134 IPC_STRUCT_MEMBER(int32, ipc_database_id) 134 IPC_STRUCT_MEMBER(int32, ipc_database_id)
135 // The transaction its associated with. 135 // The transaction its associated with.
136 IPC_STRUCT_MEMBER(int64, transaction_id) 136 IPC_STRUCT_MEMBER(int64, transaction_id)
137 // The object store's id. 137 // The object store's id.
138 IPC_STRUCT_MEMBER(int64, object_store_id) 138 IPC_STRUCT_MEMBER(int64, object_store_id)
139 // The index id.
140 IPC_STRUCT_MEMBER(int64, index_id)
139 // The serialized key range. 141 // The serialized key range.
140 IPC_STRUCT_MEMBER(content::IndexedDBKeyRange, key_range) 142 IPC_STRUCT_MEMBER(content::IndexedDBKeyRange, key_range)
141 // The max number of values to retrieve. 143 // The max number of values to retrieve.
142 IPC_STRUCT_MEMBER(int64, max_count) 144 IPC_STRUCT_MEMBER(int64, max_count)
143 IPC_STRUCT_END() 145 IPC_STRUCT_END()
144 146
145 IPC_STRUCT_BEGIN(IndexedDBMsg_BlobOrFileInfo) 147 IPC_STRUCT_BEGIN(IndexedDBMsg_BlobOrFileInfo)
146 IPC_STRUCT_MEMBER(bool, is_file) 148 IPC_STRUCT_MEMBER(bool, is_file)
147 IPC_STRUCT_MEMBER(std::string, uuid) 149 IPC_STRUCT_MEMBER(std::string, uuid)
148 IPC_STRUCT_MEMBER(base::string16, mime_type) 150 IPC_STRUCT_MEMBER(base::string16, mime_type)
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
565 int64) /* transaction_id */ 567 int64) /* transaction_id */
566 568
567 // WebIDBDatabase::commit() message. 569 // WebIDBDatabase::commit() message.
568 IPC_MESSAGE_CONTROL2(IndexedDBHostMsg_DatabaseCommit, 570 IPC_MESSAGE_CONTROL2(IndexedDBHostMsg_DatabaseCommit,
569 int32, /* ipc_database_id */ 571 int32, /* ipc_database_id */
570 int64) /* transaction_id */ 572 int64) /* transaction_id */
571 573
572 // WebIDBDatabase::~WebIDBCursor() message. 574 // WebIDBDatabase::~WebIDBCursor() message.
573 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_CursorDestroyed, 575 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_CursorDestroyed,
574 int32 /* ipc_cursor_id */) 576 int32 /* ipc_cursor_id */)
OLDNEW
« no previous file with comments | « content/child/indexed_db/webidbdatabase_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698