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

Unified Diff: content/child/indexed_db/webidbcursor_impl.cc

Issue 1544273002: Switch to standard integer types in content/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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: content/child/indexed_db/webidbcursor_impl.cc
diff --git a/content/child/indexed_db/webidbcursor_impl.cc b/content/child/indexed_db/webidbcursor_impl.cc
index 35fe5df5843c7897f397f5d38e92391d45ddfbf8..fb1c3bbb19cde1868dd89547d773285945bbfeb1 100644
--- a/content/child/indexed_db/webidbcursor_impl.cc
+++ b/content/child/indexed_db/webidbcursor_impl.cc
@@ -4,6 +4,8 @@
#include "content/child/indexed_db/webidbcursor_impl.h"
+#include <stddef.h>
+
#include <string>
#include <vector>
@@ -21,8 +23,8 @@ using blink::WebIDBValue;
namespace content {
-WebIDBCursorImpl::WebIDBCursorImpl(int32 ipc_cursor_id,
- int64 transaction_id,
+WebIDBCursorImpl::WebIDBCursorImpl(int32_t ipc_cursor_id,
+ int64_t transaction_id,
ThreadSafeSender* thread_safe_sender)
: ipc_cursor_id_(ipc_cursor_id),
transaction_id_(transaction_id),
« no previous file with comments | « content/child/indexed_db/webidbcursor_impl.h ('k') | content/child/indexed_db/webidbcursor_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698