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

Unified Diff: Source/modules/indexeddb/InspectorIndexedDBAgent.cpp

Issue 325683002: [IndexedDB] Use consistent enums on both sides of IPC. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: Source/modules/indexeddb/InspectorIndexedDBAgent.cpp
diff --git a/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp b/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp
index 5f7c4a975935beb0940d7d991b1c6fbdb9716f6f..9bf40a807a22a044d94c919abde95c1548d85cda 100644
--- a/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp
+++ b/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp
@@ -510,9 +510,9 @@ public:
return;
}
- idbRequest = idbIndex->openCursor(scriptState(), m_idbKeyRange.get(), blink::WebIDBCursor::Next);
+ idbRequest = idbIndex->openCursor(scriptState(), m_idbKeyRange.get(), blink::Next);
} else {
- idbRequest = idbObjectStore->openCursor(scriptState(), m_idbKeyRange.get(), blink::WebIDBCursor::Next);
+ idbRequest = idbObjectStore->openCursor(scriptState(), m_idbKeyRange.get(), blink::Next);
}
idbRequest->addEventListener(EventTypeNames::success, openCursorCallback, false);
}

Powered by Google App Engine
This is Rietveld 408576698