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

Unified Diff: net/disk_cache/blockfile/file_lock.h

Issue 1477533002: Remove kint16max. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@kint8max
Patch Set: includes Created 5 years, 1 month 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/blockfile/disk_format_base.h ('k') | ui/app_list/speech_ui_model.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/blockfile/file_lock.h
diff --git a/net/disk_cache/blockfile/file_lock.h b/net/disk_cache/blockfile/file_lock.h
index 3486aba18d19e15b6f01b3c9f174b852251ca6a7..607abfcd188a102b37cb431ad4fa55023fc37fe0 100644
--- a/net/disk_cache/blockfile/file_lock.h
+++ b/net/disk_cache/blockfile/file_lock.h
@@ -7,6 +7,8 @@
#ifndef NET_DISK_CACHE_BLOCKFILE_FILE_LOCK_H_
#define NET_DISK_CACHE_BLOCKFILE_FILE_LOCK_H_
+#include <stdint.h>
+
#include "net/base/net_export.h"
#include "net/disk_cache/blockfile/disk_format_base.h"
@@ -37,7 +39,7 @@ class NET_EXPORT_PRIVATE FileLock {
virtual void Unlock();
private:
bool acquired_;
- volatile int32* updating_;
+ volatile int32_t* updating_;
};
} // namespace disk_cache
« no previous file with comments | « net/disk_cache/blockfile/disk_format_base.h ('k') | ui/app_list/speech_ui_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698