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

Unified Diff: chromeos/network/onc/onc_utils.cc

Issue 1540803002: Switch to standard integer types in chromeos/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more includes 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 | « chromeos/network/onc/onc_utils.h ('k') | chromeos/network/onc/onc_utils_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/network/onc/onc_utils.cc
diff --git a/chromeos/network/onc/onc_utils.cc b/chromeos/network/onc/onc_utils.cc
index 771c51b057963d324c0b3a5669cf86303a51b34b..55f509135bcc78763711c57cf05bc21a8028cc3e 100644
--- a/chromeos/network/onc/onc_utils.cc
+++ b/chromeos/network/onc/onc_utils.cc
@@ -4,6 +4,9 @@
#include "chromeos/network/onc/onc_utils.h"
+#include <stddef.h>
+#include <stdint.h>
+
#include "base/base64.h"
#include "base/json/json_reader.h"
#include "base/logging.h"
@@ -768,7 +771,7 @@ net::ProxyServer ConvertOncProxyLocationToHostPort(
return net::ProxyServer(
proxy_server.scheme(),
net::HostPortPair(proxy_server.host_port_pair().host(),
- static_cast<uint16>(port)));
+ static_cast<uint16_t>(port)));
}
void AppendProxyServerForScheme(const base::DictionaryValue& onc_manual,
« no previous file with comments | « chromeos/network/onc/onc_utils.h ('k') | chromeos/network/onc/onc_utils_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698