| Index: content/renderer/p2p/port_allocator.cc
|
| diff --git a/content/renderer/p2p/port_allocator.cc b/content/renderer/p2p/port_allocator.cc
|
| index 1f2d1e3af049580208c82a09ab51738ebb34ae81..c4ba18bb02d5fc53fb267e848477e180f09a8c4b 100644
|
| --- a/content/renderer/p2p/port_allocator.cc
|
| +++ b/content/renderer/p2p/port_allocator.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "content/renderer/p2p/port_allocator.h"
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "base/command_line.h"
|
| #include "base/logging.h"
|
| #include "content/public/common/content_switches.h"
|
| @@ -24,7 +26,7 @@ P2PPortAllocator::P2PPortAllocator(
|
| config_(config),
|
| origin_(origin),
|
| network_manager_task_runner_(task_runner) {
|
| - uint32 flags = 0;
|
| + uint32_t flags = 0;
|
| if (!config_.enable_multiple_routes) {
|
| flags |= cricket::PORTALLOCATOR_DISABLE_ADAPTER_ENUMERATION;
|
| }
|
|
|