OLD | NEW |
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_SOCKET_FACTORY_H_ | 5 #ifndef REMOTING_TEST_FAKE_SOCKET_FACTORY_H_ |
6 #define REMOTING_TEST_FAKE_SOCKET_FACTORY_H_ | 6 #define REMOTING_TEST_FAKE_SOCKET_FACTORY_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <list> | 10 #include <list> |
11 | 11 |
12 #include "base/callback_forward.h" | 12 #include "base/callback_forward.h" |
13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
14 #include "base/macros.h" | 14 #include "base/macros.h" |
| 15 #include "base/memory/scoped_ptr.h" |
15 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
16 #include "remoting/test/fake_network_dispatcher.h" | 17 #include "remoting/test/fake_network_dispatcher.h" |
17 #include "third_party/webrtc/p2p/base/packetsocketfactory.h" | 18 #include "third_party/webrtc/p2p/base/packetsocketfactory.h" |
18 | 19 |
19 namespace remoting { | 20 namespace remoting { |
20 | 21 |
21 class FakeNetworkDispatcher; | 22 class FakeNetworkDispatcher; |
22 class LeakyBucket; | 23 class LeakyBucket; |
23 | 24 |
24 class FakePacketSocketFactory : public rtc::PacketSocketFactory, | 25 class FakePacketSocketFactory : public rtc::PacketSocketFactory, |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 std::list<PendingPacket> pending_packets_; | 120 std::list<PendingPacket> pending_packets_; |
120 | 121 |
121 base::WeakPtrFactory<FakePacketSocketFactory> weak_factory_; | 122 base::WeakPtrFactory<FakePacketSocketFactory> weak_factory_; |
122 | 123 |
123 DISALLOW_COPY_AND_ASSIGN(FakePacketSocketFactory); | 124 DISALLOW_COPY_AND_ASSIGN(FakePacketSocketFactory); |
124 }; | 125 }; |
125 | 126 |
126 } // namespace remoting | 127 } // namespace remoting |
127 | 128 |
128 #endif // REMOTING_TEST_FAKE_SOCKET_FACTORY_H_ | 129 #endif // REMOTING_TEST_FAKE_SOCKET_FACTORY_H_ |
OLD | NEW |