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

Unified Diff: extensions/browser/api/sockets_udp/udp_socket_event_dispatcher.h

Issue 1549643002: Switch to standard integer types in extensions/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clean
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: extensions/browser/api/sockets_udp/udp_socket_event_dispatcher.h
diff --git a/extensions/browser/api/sockets_udp/udp_socket_event_dispatcher.h b/extensions/browser/api/sockets_udp/udp_socket_event_dispatcher.h
index cc1260e0005eea64d44d0815f551b6a8d58fc412..b4c462446b6d24d3c364b461e9ba1f15cfa32bac 100644
--- a/extensions/browser/api/sockets_udp/udp_socket_event_dispatcher.h
+++ b/extensions/browser/api/sockets_udp/udp_socket_event_dispatcher.h
@@ -5,6 +5,8 @@
#ifndef EXTENSIONS_BROWSER_API_SOCKETS_UDP_UDP_SOCKET_EVENT_DISPATCHER_H_
#define EXTENSIONS_BROWSER_API_SOCKETS_UDP_UDP_SOCKET_EVENT_DISPATCHER_H_
+#include <stdint.h>
+
#include <string>
#include "extensions/browser/api/api_resource_manager.h"
@@ -73,7 +75,7 @@ class UDPSocketEventDispatcher
int bytes_read,
scoped_refptr<net::IOBuffer> io_buffer,
const std::string& address,
- uint16 port);
+ uint16_t port);
// Post an extension event from IO to UI thread
static void PostEvent(const ReceiveParams& params, scoped_ptr<Event> event);

Powered by Google App Engine
This is Rietveld 408576698