Chromium Code Reviews| Index: third_party/WebKit/Source/modules/indexeddb/IDBCursor.cpp |
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBCursor.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBCursor.cpp |
| index be277f32cdaa835944c850f9dd449f6b33a7e7fc..e832bbf512ff28b9266bbc2f8295eef57ae17813 100644 |
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBCursor.cpp |
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBCursor.cpp |
| @@ -314,8 +314,9 @@ void IDBCursor::continueFunction(IDBKey* key, |
| } |
| } |
| - // FIXME: We're not using the context from when continue was called, which means the callback |
| - // will be on the original context openCursor was called on. Is this right? |
| + // FIXME: We're not using the context from when continue was called, which |
| + // means the callback will be on the original context openCursor was |
|
dcheng
2016/10/04 23:03:04
Nit: FIXMEs aren't usually indented like this
Nico
2016/10/05 01:33:17
Done.
|
| + // called on. Is this right? |
| m_request->setPendingCursor(this); |
| m_gotValue = false; |
| m_backend->continueFunction(key, primaryKey, |