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

Side by Side Diff: remoting/test/fake_port_allocator.h

Issue 667123002: Standardize usage of virtual/override/final in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « remoting/test/fake_network_manager.h ('k') | remoting/test/fake_port_allocator.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef REMOTING_TEST_FAKE_PORT_ALLOCATOR_H_ 5 #ifndef REMOTING_TEST_FAKE_PORT_ALLOCATOR_H_
6 #define REMOTING_TEST_FAKE_PORT_ALLOCATOR_H_ 6 #define REMOTING_TEST_FAKE_PORT_ALLOCATOR_H_
7 7
8 #include <set> 8 #include <set>
9 9
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "third_party/libjingle/source/talk/p2p/client/httpportallocator.h" 12 #include "third_party/libjingle/source/talk/p2p/client/httpportallocator.h"
13 13
14 namespace remoting { 14 namespace remoting {
15 15
16 class FakeNetworkDispatcher; 16 class FakeNetworkDispatcher;
17 class FakePacketSocketFactory; 17 class FakePacketSocketFactory;
18 18
19 class FakePortAllocator : public cricket::HttpPortAllocatorBase { 19 class FakePortAllocator : public cricket::HttpPortAllocatorBase {
20 public: 20 public:
21 static scoped_ptr<FakePortAllocator> Create( 21 static scoped_ptr<FakePortAllocator> Create(
22 scoped_refptr<FakeNetworkDispatcher> fake_network_dispatcher); 22 scoped_refptr<FakeNetworkDispatcher> fake_network_dispatcher);
23 23
24 virtual ~FakePortAllocator(); 24 ~FakePortAllocator() override;
25 25
26 FakePacketSocketFactory* socket_factory() { return socket_factory_.get(); } 26 FakePacketSocketFactory* socket_factory() { return socket_factory_.get(); }
27 27
28 // cricket::BasicPortAllocator overrides. 28 // cricket::BasicPortAllocator overrides.
29 virtual cricket::PortAllocatorSession* CreateSessionInternal( 29 cricket::PortAllocatorSession* CreateSessionInternal(
30 const std::string& content_name, 30 const std::string& content_name,
31 int component, 31 int component,
32 const std::string& ice_username_fragment, 32 const std::string& ice_username_fragment,
33 const std::string& ice_password) override; 33 const std::string& ice_password) override;
34 34
35 private: 35 private:
36 FakePortAllocator(scoped_ptr<rtc::NetworkManager> network_manager, 36 FakePortAllocator(scoped_ptr<rtc::NetworkManager> network_manager,
37 scoped_ptr<FakePacketSocketFactory> socket_factory); 37 scoped_ptr<FakePacketSocketFactory> socket_factory);
38 38
39 scoped_ptr<rtc::NetworkManager> network_manager_; 39 scoped_ptr<rtc::NetworkManager> network_manager_;
40 scoped_ptr<FakePacketSocketFactory> socket_factory_; 40 scoped_ptr<FakePacketSocketFactory> socket_factory_;
41 41
42 DISALLOW_COPY_AND_ASSIGN(FakePortAllocator); 42 DISALLOW_COPY_AND_ASSIGN(FakePortAllocator);
43 }; 43 };
44 44
45 } // namespace remoting 45 } // namespace remoting
46 46
47 #endif // REMOTING_TEST_FAKE_PORT_ALLOCATOR_H_ 47 #endif // REMOTING_TEST_FAKE_PORT_ALLOCATOR_H_
OLDNEW
« no previous file with comments | « remoting/test/fake_network_manager.h ('k') | remoting/test/fake_port_allocator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698