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

Side by Side Diff: remoting/test/fake_network_manager.cc

Issue 427613005: Implement network performance simulation for remoting perf tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « remoting/test/fake_network_manager.h ('k') | remoting/test/fake_port_allocator.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 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 "remoting/test/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 "third_party/webrtc/base/socketaddress.h"
12
13 namespace remoting {
14
15 FakeNetworkManager::FakeNetworkManager(const rtc::IPAddress& address)
16 : started_(false),
17 weak_factory_(this) {
18 network_.reset(new rtc::Network("fake", "Fake Network", address, 32));
19 network_->AddIP(address);
20 }
21
22 FakeNetworkManager::~FakeNetworkManager() {
23 }
24
25 void FakeNetworkManager::StartUpdating() {
26 started_ = true;
27 base::MessageLoop::current()->PostTask(
28 FROM_HERE,
29 base::Bind(&FakeNetworkManager::SendNetworksChangedSignal,
30 weak_factory_.GetWeakPtr()));
31 }
32
33 void FakeNetworkManager::StopUpdating() {
34 started_ = false;
35 }
36
37 void FakeNetworkManager::GetNetworks(NetworkList* networks) const {
38 networks->clear();
39 networks->push_back(network_.get());
40 }
41
42 void FakeNetworkManager::SendNetworksChangedSignal() {
43 SignalNetworksChanged();
44 }
45
46 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/test/fake_network_manager.h ('k') | remoting/test/fake_port_allocator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698