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

Unified Diff: content/browser/renderer_host/p2p/socket_host_udp_unittest.cc

Issue 10739002: Added broadcasting feature to UDP server sockets. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed Win code. Created 8 years, 5 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
« no previous file with comments | « no previous file | net/udp/datagram_server_socket.h » ('j') | net/udp/datagram_server_socket.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/p2p/socket_host_udp_unittest.cc
diff --git a/content/browser/renderer_host/p2p/socket_host_udp_unittest.cc b/content/browser/renderer_host/p2p/socket_host_udp_unittest.cc
index b294c786ecd8720d9291c6eaf472d6b547d80f46..e06c25762cc48ea2a1b8acf6c355dee87532d3f4 100644
--- a/content/browser/renderer_host/p2p/socket_host_udp_unittest.cc
+++ b/content/browser/renderer_host/p2p/socket_host_udp_unittest.cc
@@ -107,6 +107,12 @@ class FakeDatagramServerSocket : public net::DatagramServerSocket {
return net_log_;
}
+ virtual void AllowAddressReuse() OVERRIDE {
+ }
Sergey Ulanov 2012/07/12 18:15:37 NOTIMPLEMENTED()
ygorshenin1 2012/07/16 10:29:44 Done.
+
+ virtual void AllowBroadcast() OVERRIDE {
+ }
Sergey Ulanov 2012/07/12 18:15:37 NOTIMPLEMENTED()
ygorshenin1 2012/07/16 10:29:44 Done.
+
private:
net::IPEndPoint address_;
std::deque<UDPPacket>* sent_packets_;
« no previous file with comments | « no previous file | net/udp/datagram_server_socket.h » ('j') | net/udp/datagram_server_socket.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698