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

Unified Diff: net/disk_cache/simple/simple_index_delegate.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/simple/simple_index.cc ('k') | net/disk_cache/simple/simple_index_file.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/simple/simple_index_delegate.h
diff --git a/net/disk_cache/simple/simple_index_delegate.h b/net/disk_cache/simple/simple_index_delegate.h
index e942484164e50c996ef3665b2eea496a124af295..c21e5c54dd668b131170e8cd5cf43f7975338d73 100644
--- a/net/disk_cache/simple/simple_index_delegate.h
+++ b/net/disk_cache/simple/simple_index_delegate.h
@@ -5,6 +5,8 @@
#ifndef NET_DISK_CACHE_SIMPLE_SIMPLE_INDEX_DELEGATE_H_
#define NET_DISK_CACHE_SIMPLE_SIMPLE_INDEX_DELEGATE_H_
+#include <stdint.h>
+
#include <vector>
#include "net/base/completion_callback.h"
@@ -19,7 +21,7 @@ class NET_EXPORT_PRIVATE SimpleIndexDelegate {
// Dooms all entries in |entries|, calling |callback| with the result
// asynchronously. |entries| is mutated in an undefined way by this call,
// for efficiency.
- virtual void DoomEntries(std::vector<uint64>* entry_hashes,
+ virtual void DoomEntries(std::vector<uint64_t>* entry_hashes,
const net::CompletionCallback& callback) = 0;
};
« no previous file with comments | « net/disk_cache/simple/simple_index.cc ('k') | net/disk_cache/simple/simple_index_file.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698