Index: content/browser/indexed_db/indexed_db_dispatcher_host.cc |
diff --git a/content/browser/indexed_db/indexed_db_dispatcher_host.cc b/content/browser/indexed_db/indexed_db_dispatcher_host.cc |
index b627393c8de2635f504d0d9d4b5a5fc710dc238b..ecc5ff9594b9db7263393ced4d928e7d8664cc81 100644 |
--- a/content/browser/indexed_db/indexed_db_dispatcher_host.cc |
+++ b/content/browser/indexed_db/indexed_db_dispatcher_host.cc |
@@ -872,7 +872,11 @@ void IndexedDBDispatcherHost::CursorDispatcherHost::OnPrefetchReset( |
if (!idb_cursor) |
return; |
- idb_cursor->PrefetchReset(used_prefetches, unused_prefetches); |
+ leveldb::Status s = |
+ idb_cursor->PrefetchReset(used_prefetches, unused_prefetches); |
+ // TODO(cmumford): Handle this error (crbug.com/363397) |
+ if (!s.ok()) |
+ DLOG(ERROR) << "Unable to reset prefetch"; |
} |
void IndexedDBDispatcherHost::CursorDispatcherHost::OnDestroyed( |