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

Unified Diff: chrome/installer/util/firewall_manager_win.cc

Issue 1548153002: Switch to standard integer types in chrome/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
Index: chrome/installer/util/firewall_manager_win.cc
diff --git a/chrome/installer/util/firewall_manager_win.cc b/chrome/installer/util/firewall_manager_win.cc
index df756a591da6f88f2db9f788f76ddee03d946a82..8c517bd98e77ff7e1c508568e7668d0f11858cb1 100644
--- a/chrome/installer/util/firewall_manager_win.cc
+++ b/chrome/installer/util/firewall_manager_win.cc
@@ -4,7 +4,10 @@
#include "chrome/installer/util/firewall_manager_win.h"
+#include <stdint.h>
+
#include "base/files/file_path.h"
+#include "base/macros.h"
#include "base/strings/string16.h"
#include "chrome/installer/util/advanced_firewall_manager_win.h"
#include "chrome/installer/util/browser_distribution.h"
@@ -17,7 +20,7 @@ namespace installer {
namespace {
-const uint16 kDefaultMdnsPort = 5353;
+const uint16_t kDefaultMdnsPort = 5353;
class FirewallManagerAdvancedImpl : public FirewallManager {
public:
« no previous file with comments | « chrome/installer/util/firewall_manager_win.h ('k') | chrome/installer/util/google_chrome_binaries_distribution.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698