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

Unified Diff: net/disk_cache/net_log_parameters.cc

Issue 1535363003: Switch to standard integer types in net/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stddef 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
« no previous file with comments | « net/disk_cache/net_log_parameters.h ('k') | net/disk_cache/simple/simple_backend_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/net_log_parameters.cc
diff --git a/net/disk_cache/net_log_parameters.cc b/net/disk_cache/net_log_parameters.cc
index 53c873f01b6435e106ad226caed08ee26c9f02e5..4f95fbb6c288e4732da7eeb766848fa92490ea9b 100644
--- a/net/disk_cache/net_log_parameters.cc
+++ b/net/disk_cache/net_log_parameters.cc
@@ -52,7 +52,7 @@ scoped_ptr<base::Value> NetLogReadWriteCompleteCallback(
}
scoped_ptr<base::Value> NetLogSparseOperationCallback(
- int64 offset,
+ int64_t offset,
int buf_len,
net::NetLogCaptureMode /* capture_mode */) {
scoped_ptr<base::DictionaryValue> dict(new base::DictionaryValue());
@@ -74,7 +74,7 @@ scoped_ptr<base::Value> NetLogSparseReadWriteCallback(
}
scoped_ptr<base::Value> NetLogGetAvailableRangeResultCallback(
- int64 start,
+ int64_t start,
int result,
net::NetLogCaptureMode /* capture_mode */) {
scoped_ptr<base::DictionaryValue> dict(new base::DictionaryValue());
@@ -113,7 +113,7 @@ net::NetLog::ParametersCallback CreateNetLogReadWriteCompleteCallback(
}
net::NetLog::ParametersCallback CreateNetLogSparseOperationCallback(
- int64 offset,
+ int64_t offset,
int buf_len) {
return base::Bind(&NetLogSparseOperationCallback, offset, buf_len);
}
@@ -125,7 +125,7 @@ net::NetLog::ParametersCallback CreateNetLogSparseReadWriteCallback(
}
net::NetLog::ParametersCallback CreateNetLogGetAvailableRangeResultCallback(
- int64 start,
+ int64_t start,
int result) {
return base::Bind(&NetLogGetAvailableRangeResultCallback, start, result);
}
« no previous file with comments | « net/disk_cache/net_log_parameters.h ('k') | net/disk_cache/simple/simple_backend_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698