Index: content/child/indexed_db/webidbcursor_impl.h |
diff --git a/content/child/indexed_db/webidbcursor_impl.h b/content/child/indexed_db/webidbcursor_impl.h |
index 1a06d99fdc265092ed6caea1ceea8bf1d9d6dd3a..604cf42bcd17e6904565eef65cc82bcc47d1e028 100644 |
--- a/content/child/indexed_db/webidbcursor_impl.h |
+++ b/content/child/indexed_db/webidbcursor_impl.h |
@@ -59,6 +59,11 @@ class CONTENT_EXPORT WebIDBCursorImpl |
FRIEND_TEST_ALL_PREFIXES(WebIDBCursorImplTest, PrefetchReset); |
FRIEND_TEST_ALL_PREFIXES(WebIDBCursorImplTest, PrefetchTest); |
+ enum { kInvalidCursorId = -1 }; |
+ enum { kPrefetchContinueThreshold = 2 }; |
+ enum { kMinPrefetchAmount = 5 }; |
+ enum { kMaxPrefetchAmount = 100 }; |
+ |
int32 ipc_cursor_id_; |
int64 transaction_id_; |
@@ -81,11 +86,6 @@ class CONTENT_EXPORT WebIDBCursorImpl |
int prefetch_amount_; |
scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
- |
- enum { kInvalidCursorId = -1 }; |
- enum { kPrefetchContinueThreshold = 2 }; |
- enum { kMinPrefetchAmount = 5 }; |
- enum { kMaxPrefetchAmount = 100 }; |
}; |
} // namespace content |