OLD | NEW |
| (Empty) |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "jingle/glue/fake_network_manager.h" | |
6 | |
7 #include "base/bind.h" | |
8 #include "base/logging.h" | |
9 #include "base/message_loop/message_loop.h" | |
10 #include "jingle/glue/utils.h" | |
11 #include "net/base/ip_endpoint.h" | |
12 #include "third_party/libjingle/source/talk/base/socketaddress.h" | |
13 | |
14 namespace jingle_glue { | |
15 | |
16 FakeNetworkManager::FakeNetworkManager(const net::IPAddressNumber& address) | |
17 : started_(false), | |
18 weak_factory_(this) { | |
19 net::IPEndPoint endpoint(address, 0); | |
20 talk_base::SocketAddress socket_address; | |
21 CHECK(IPEndPointToSocketAddress(endpoint, &socket_address)); | |
22 network_.reset(new talk_base::Network("fake", "Fake Network", | |
23 socket_address.ipaddr(), 32)); | |
24 network_->AddIP(socket_address.ipaddr()); | |
25 } | |
26 | |
27 FakeNetworkManager::~FakeNetworkManager() { | |
28 } | |
29 | |
30 void FakeNetworkManager::StartUpdating() { | |
31 started_ = true; | |
32 base::MessageLoop::current()->PostTask( | |
33 FROM_HERE, | |
34 base::Bind(&FakeNetworkManager::SendNetworksChangedSignal, | |
35 weak_factory_.GetWeakPtr())); | |
36 } | |
37 | |
38 void FakeNetworkManager::StopUpdating() { | |
39 started_ = false; | |
40 } | |
41 | |
42 void FakeNetworkManager::GetNetworks(NetworkList* networks) const { | |
43 networks->clear(); | |
44 networks->push_back(network_.get()); | |
45 } | |
46 | |
47 void FakeNetworkManager::SendNetworksChangedSignal() { | |
48 SignalNetworksChanged(); | |
49 } | |
50 | |
51 } // namespace jingle_glue | |
OLD | NEW |