summaryrefslogtreecommitdiff
path: root/chromium/jingle/glue/fake_socket_factory.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/jingle/glue/fake_socket_factory.cc')
-rw-r--r--chromium/jingle/glue/fake_socket_factory.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/chromium/jingle/glue/fake_socket_factory.cc b/chromium/jingle/glue/fake_socket_factory.cc
index 823367f6340..38472c6f41a 100644
--- a/chromium/jingle/glue/fake_socket_factory.cc
+++ b/chromium/jingle/glue/fake_socket_factory.cc
@@ -7,6 +7,7 @@
#include "base/bind.h"
#include "base/message_loop/message_loop.h"
#include "jingle/glue/utils.h"
+#include "third_party/libjingle/source/talk/base/asyncpacketsocket.h"
#include "third_party/libjingle/source/talk/base/asyncsocket.h"
namespace jingle_glue {
@@ -113,7 +114,8 @@ void FakeUDPPacketSocket::DeliverPacket(const net::IPEndPoint& from,
return;
}
- SignalReadPacket(this, &data[0], data.size(), address);
+ SignalReadPacket(this, &data[0], data.size(), address,
+ talk_base::CreatePacketTime(0));
}
FakeSocketManager::FakeSocketManager()