| Index: content/browser/indexed_db/indexed_db_cursor.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_cursor.cc b/content/browser/indexed_db/indexed_db_cursor.cc
|
| index 7172dab8f93a0d39aa4650c60e4e7297dbe2910d..5e3a96a2a4ca523bdd9b48f110693a8fa755f0b3 100644
|
| --- a/content/browser/indexed_db/indexed_db_cursor.cc
|
| +++ b/content/browser/indexed_db/indexed_db_cursor.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "content/browser/indexed_db/indexed_db_cursor.h"
|
|
|
| +#include <stddef.h>
|
| +
|
| #include <vector>
|
|
|
| #include "base/bind.h"
|
| @@ -47,7 +49,7 @@ void IndexedDBCursor::Continue(scoped_ptr<IndexedDBKey> key,
|
| callbacks));
|
| }
|
|
|
| -void IndexedDBCursor::Advance(uint32 count,
|
| +void IndexedDBCursor::Advance(uint32_t count,
|
| scoped_refptr<IndexedDBCallbacks> callbacks) {
|
| IDB_TRACE("IndexedDBCursor::Advance");
|
|
|
| @@ -58,7 +60,7 @@ void IndexedDBCursor::Advance(uint32 count,
|
| }
|
|
|
| void IndexedDBCursor::CursorAdvanceOperation(
|
| - uint32 count,
|
| + uint32_t count,
|
| scoped_refptr<IndexedDBCallbacks> callbacks,
|
| IndexedDBTransaction* /*transaction*/) {
|
| IDB_TRACE("IndexedDBCursor::CursorAdvanceOperation");
|
|
|