OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #ifndef WEBRTC_BASE_SOCKETSERVER_H_ | 11 #ifndef WEBRTC_RTC_BASE_SOCKETSERVER_H_ |
12 #define WEBRTC_BASE_SOCKETSERVER_H_ | 12 #define WEBRTC_RTC_BASE_SOCKETSERVER_H_ |
13 | 13 |
14 #include <memory> | 14 #include <memory> |
15 #include "webrtc/base/socketfactory.h" | 15 #include "webrtc/base/socketfactory.h" |
16 | 16 |
17 namespace rtc { | 17 namespace rtc { |
18 | 18 |
19 class MessageQueue; | 19 class MessageQueue; |
20 // Needs to be forward declared because there's a circular dependency between | 20 // Needs to be forward declared because there's a circular dependency between |
21 // NetworkMonitor and Thread. | 21 // NetworkMonitor and Thread. |
22 // TODO(deadbeef): Fix this. | 22 // TODO(deadbeef): Fix this. |
(...skipping 29 matching lines...) Expand all Loading... |
52 network_binder_ = binder; | 52 network_binder_ = binder; |
53 } | 53 } |
54 NetworkBinderInterface* network_binder() const { return network_binder_; } | 54 NetworkBinderInterface* network_binder() const { return network_binder_; } |
55 | 55 |
56 private: | 56 private: |
57 NetworkBinderInterface* network_binder_ = nullptr; | 57 NetworkBinderInterface* network_binder_ = nullptr; |
58 }; | 58 }; |
59 | 59 |
60 } // namespace rtc | 60 } // namespace rtc |
61 | 61 |
62 #endif // WEBRTC_BASE_SOCKETSERVER_H_ | 62 #endif // WEBRTC_RTC_BASE_SOCKETSERVER_H_ |
OLD | NEW |