Chromium Code Reviews| Index: content/browser/indexed_db/indexed_db_backing_store.cc |
| diff --git a/content/browser/indexed_db/indexed_db_backing_store.cc b/content/browser/indexed_db/indexed_db_backing_store.cc |
| index ff549bbaaa137614e37efb46e097efa13047fc85..370a3abc6f99ecfe2650ef75e8b26393df5e9016 100644 |
| --- a/content/browser/indexed_db/indexed_db_backing_store.cc |
| +++ b/content/browser/indexed_db/indexed_db_backing_store.cc |
| @@ -3296,6 +3296,7 @@ IndexedDBBackingStore::Cursor::ContinueNext(const IndexedDBKey* key, |
| const IndexedDBKey* primary_key, |
| IteratorState next_state, |
| Status* s) { |
| + IDB_TRACE("IndexedDBBackingStore::Cursor::ContinueNext"); |
|
Reilly Grant (use Gerrit)
2017/03/04 01:26:14
The changes in this file look unrelated.
dmurph
2017/03/09 20:44:15
Done.
|
| DCHECK(cursor_options_.forward); |
| DCHECK(!key || key->IsValid()); |
| DCHECK(!primary_key || primary_key->IsValid()); |
| @@ -3364,6 +3365,7 @@ IndexedDBBackingStore::Cursor::ContinuePrevious(const IndexedDBKey* key, |
| const IndexedDBKey* primary_key, |
| IteratorState next_state, |
| Status* s) { |
| + IDB_TRACE("IndexedDBBackingStore::Cursor::ContinuePrevious"); |
| DCHECK(!cursor_options_.forward); |
| DCHECK(!key || key->IsValid()); |
| DCHECK(!primary_key || primary_key->IsValid()); |