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

Unified Diff: net/base/escape.cc

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/escape.cc
diff --git a/net/base/escape.cc b/net/base/escape.cc
index 05cc2b591a44dc12185bec176b79f54be203b171..8e6f870fa8b7beca15ab608136148193230892a7 100644
--- a/net/base/escape.cc
+++ b/net/base/escape.cc
@@ -33,7 +33,7 @@ struct Charmap {
return ((map[c >> 5] & (1 << (c & 31))) != 0);
}
- uint32 map[8];
+ uint32_t map[8];
};
// Given text to escape and a Charmap defining which values to escape,
« no previous file with comments | « net/base/escape.h ('k') | net/base/file_stream.h » ('j') | net/cert/crl_set_storage.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698