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

Unified Diff: net/base/completion_callback.h

Issue 1158923005: Use the exact-width integer types defined in <stdint.h> rather than (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tweak comments. Exclude mime_sniffer*. Rebase. Created 5 years, 7 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: net/base/completion_callback.h
diff --git a/net/base/completion_callback.h b/net/base/completion_callback.h
index 7e5c90e8bab0e872add07925218a43c531fba9dd..3b3e6055a215314547dbe9a0d6f7cb1fc851ae3b 100644
--- a/net/base/completion_callback.h
+++ b/net/base/completion_callback.h
@@ -14,9 +14,10 @@ namespace net {
// used to report a byte count or network error code.
typedef base::Callback<void(int)> CompletionCallback;
-// 64bit version of callback specialization that takes a single int64 parameter.
-// Usually this is used to report a file offset, size or network error code.
-typedef base::Callback<void(int64)> Int64CompletionCallback;
+// 64bit version of callback specialization that takes a single int64_t
+// parameter. Usually this is used to report a file offset, size or network
+// error code.
+typedef base::Callback<void(int64_t)> Int64CompletionCallback;
typedef base::CancelableCallback<void(int)> CancelableCompletionCallback;

Powered by Google App Engine
This is Rietveld 408576698