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

Unified Diff: public/platform/WebIDBCursor.h

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: public/platform/WebIDBCursor.h
diff --git a/public/platform/WebIDBCursor.h b/public/platform/WebIDBCursor.h
index b64b505ff5c45e4d057dca0d3631711984dea174..a21a83296c87a50f5dd6f217f327cacb7144e1e7 100644
--- a/public/platform/WebIDBCursor.h
+++ b/public/platform/WebIDBCursor.h
@@ -37,15 +37,6 @@ namespace blink {
class WebIDBCursor {
public:
virtual ~WebIDBCursor() { }
-
- enum Direction {
- Next = 0,
- NextNoDuplicate = 1,
- Prev = 2,
- PrevNoDuplicate = 3,
- DirectionLast = PrevNoDuplicate
- };
-
virtual void advance(unsigned long, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED(); }
virtual void continueFunction(const WebIDBKey&, const WebIDBKey& primaryKey, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED(); }
virtual void postSuccessHandlerCallback() { } // Only used in frontend.

Powered by Google App Engine
This is Rietveld 408576698