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

Unified Diff: net/disk_cache/net_log_parameters.h

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/memory/mem_rankings.h ('k') | net/disk_cache/net_log_parameters.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/net_log_parameters.h
diff --git a/net/disk_cache/net_log_parameters.h b/net/disk_cache/net_log_parameters.h
index 082390b9f202e4189e8474748b1f393a765a8611..2bbed1232d5ccfc37304b3df3ba1267c85a7d82e 100644
--- a/net/disk_cache/net_log_parameters.h
+++ b/net/disk_cache/net_log_parameters.h
@@ -5,6 +5,8 @@
#ifndef NET_DISK_CACHE_NET_LOG_PARAMETERS_H_
#define NET_DISK_CACHE_NET_LOG_PARAMETERS_H_
+#include <stdint.h>
+
#include <string>
#include "net/log/net_log.h"
@@ -42,7 +44,7 @@ net::NetLog::ParametersCallback CreateNetLogReadWriteCompleteCallback(
// Creates a NetLog callback that returns parameters for when a sparse
// operation is started.
net::NetLog::ParametersCallback CreateNetLogSparseOperationCallback(
- int64 offset,
+ int64_t offset,
int buf_len);
// Creates a NetLog callback that returns parameters for when a read or write
@@ -54,7 +56,7 @@ net::NetLog::ParametersCallback CreateNetLogSparseReadWriteCallback(
// Creates a NetLog callback that returns parameters for when a call to
// GetAvailableRange returns.
net::NetLog::ParametersCallback CreateNetLogGetAvailableRangeResultCallback(
- int64 start,
+ int64_t start,
int result);
} // namespace disk_cache
« no previous file with comments | « net/disk_cache/memory/mem_rankings.h ('k') | net/disk_cache/net_log_parameters.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698