OLD | NEW |
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 #include "content/common/indexed_db/proxy_webidbcursor_impl.h" | 5 #include "content/common/indexed_db/proxy_webidbcursor_impl.h" |
6 | 6 |
7 #include "content/common/child_thread.h" | 7 #include "content/common/child_thread.h" |
8 #include "content/common/indexed_db/indexed_db_messages.h" | 8 #include "content/common/indexed_db/indexed_db_messages.h" |
9 #include "content/common/indexed_db/indexed_db_dispatcher.h" | 9 #include "content/common/indexed_db/indexed_db_dispatcher.h" |
10 | 10 |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 idb_cursor_id_, &ec); | 114 idb_cursor_id_, &ec); |
115 } | 115 } |
116 | 116 |
117 void RendererWebIDBCursorImpl::deleteFunction(WebIDBCallbacks* callbacks, | 117 void RendererWebIDBCursorImpl::deleteFunction(WebIDBCallbacks* callbacks, |
118 WebExceptionCode& ec) { | 118 WebExceptionCode& ec) { |
119 IndexedDBDispatcher* dispatcher = | 119 IndexedDBDispatcher* dispatcher = |
120 IndexedDBDispatcher::ThreadSpecificInstance(); | 120 IndexedDBDispatcher::ThreadSpecificInstance(); |
121 dispatcher->RequestIDBCursorDelete(callbacks, idb_cursor_id_, &ec); | 121 dispatcher->RequestIDBCursorDelete(callbacks, idb_cursor_id_, &ec); |
122 } | 122 } |
123 | 123 |
124 void RendererWebIDBCursorImpl::postSuccessHandlerCallback() | 124 void RendererWebIDBCursorImpl::postSuccessHandlerCallback() { |
125 { | |
126 pending_onsuccess_callbacks_--; | 125 pending_onsuccess_callbacks_--; |
127 | 126 |
128 // If the onsuccess callback called continue() on the cursor again, | 127 // If the onsuccess callback called continue() on the cursor again, |
129 // and that continue was served by the prefetch cache, then | 128 // and that continue was served by the prefetch cache, then |
130 // pending_onsuccess_callbacks_ would be incremented. | 129 // pending_onsuccess_callbacks_ would be incremented. |
131 // If not, it means the callback did something else, or nothing at all, | 130 // If not, it means the callback did something else, or nothing at all, |
132 // in which case we need to reset the cache. | 131 // in which case we need to reset the cache. |
133 | 132 |
134 if (pending_onsuccess_callbacks_ == 0) | 133 if (pending_onsuccess_callbacks_ == 0) |
135 ResetPrefetchCache(); | 134 ResetPrefetchCache(); |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 IndexedDBDispatcher::ThreadSpecificInstance(); | 187 IndexedDBDispatcher::ThreadSpecificInstance(); |
189 dispatcher->RequestIDBCursorPrefetchReset(used_prefetches_, | 188 dispatcher->RequestIDBCursorPrefetchReset(used_prefetches_, |
190 prefetch_keys_.size(), | 189 prefetch_keys_.size(), |
191 idb_cursor_id_); | 190 idb_cursor_id_); |
192 prefetch_keys_.clear(); | 191 prefetch_keys_.clear(); |
193 prefetch_primary_keys_.clear(); | 192 prefetch_primary_keys_.clear(); |
194 prefetch_values_.clear(); | 193 prefetch_values_.clear(); |
195 | 194 |
196 pending_onsuccess_callbacks_ = 0; | 195 pending_onsuccess_callbacks_ = 0; |
197 } | 196 } |
OLD | NEW |