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

Side by Side Diff: content/child/indexed_db/indexed_db_dispatcher.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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #ifndef CONTENT_CHILD_INDEXED_DB_INDEXED_DB_DISPATCHER_H_ 5 #ifndef CONTENT_CHILD_INDEXED_DB_INDEXED_DB_DISPATCHER_H_
6 #define CONTENT_CHILD_INDEXED_DB_INDEXED_DB_DISPATCHER_H_ 6 #define CONTENT_CHILD_INDEXED_DB_INDEXED_DB_DISPATCHER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 int64 transaction_id, 125 int64 transaction_id,
126 int64 object_store_id, 126 int64 object_store_id,
127 int64 index_id, 127 int64 index_id,
128 const IndexedDBKeyRange& key_range, 128 const IndexedDBKeyRange& key_range,
129 bool key_only, 129 bool key_only,
130 blink::WebIDBCallbacks* callbacks); 130 blink::WebIDBCallbacks* callbacks);
131 131
132 void RequestIDBDatabaseGetAll(int32 ipc_database_id, 132 void RequestIDBDatabaseGetAll(int32 ipc_database_id,
133 int64 transaction_id, 133 int64 transaction_id,
134 int64 object_store_id, 134 int64 object_store_id,
135 int64 index_id,
135 const IndexedDBKeyRange& key_range, 136 const IndexedDBKeyRange& key_range,
136 int64 max_count, 137 int64 max_count,
137 blink::WebIDBCallbacks* callbacks); 138 blink::WebIDBCallbacks* callbacks);
138 139
139 void RequestIDBDatabasePut( 140 void RequestIDBDatabasePut(
140 int32 ipc_database_id, 141 int32 ipc_database_id,
141 int64 transaction_id, 142 int64 transaction_id,
142 int64 object_store_id, 143 int64 object_store_id,
143 const blink::WebData& value, 144 const blink::WebData& value,
144 const blink::WebVector<blink::WebBlobInfo>& web_blob_info, 145 const blink::WebVector<blink::WebBlobInfo>& web_blob_info,
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 std::map<int32, WebIDBCursorImpl*> cursors_; 266 std::map<int32, WebIDBCursorImpl*> cursors_;
266 267
267 std::map<int32, WebIDBDatabaseImpl*> databases_; 268 std::map<int32, WebIDBDatabaseImpl*> databases_;
268 269
269 DISALLOW_COPY_AND_ASSIGN(IndexedDBDispatcher); 270 DISALLOW_COPY_AND_ASSIGN(IndexedDBDispatcher);
270 }; 271 };
271 272
272 } // namespace content 273 } // namespace content
273 274
274 #endif // CONTENT_CHILD_INDEXED_DB_INDEXED_DB_DISPATCHER_H_ 275 #endif // CONTENT_CHILD_INDEXED_DB_INDEXED_DB_DISPATCHER_H_
OLDNEW
« no previous file with comments | « content/browser/indexed_db/indexed_db_dispatcher_host.cc ('k') | content/child/indexed_db/indexed_db_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698