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

Side by Side Diff: webrtc/rtc_base/socketserver.h

Issue 2966523003: Reland "Update includes for webrtc/{base => rtc_base} rename (3/3)" (Closed)
Patch Set: Restoring prime suspect includes Created 3 years, 5 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 | « webrtc/rtc_base/socketfactory.h ('k') | webrtc/rtc_base/socketstream.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_RTC_BASE_SOCKETSERVER_H_ 11 #ifndef WEBRTC_RTC_BASE_SOCKETSERVER_H_
12 #define WEBRTC_RTC_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/rtc_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.
23 class NetworkBinderInterface; 23 class NetworkBinderInterface;
24 24
25 // Provides the ability to wait for activity on a set of sockets. The Thread 25 // Provides the ability to wait for activity on a set of sockets. The Thread
(...skipping 27 matching lines...) Expand all
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_RTC_BASE_SOCKETSERVER_H_ 62 #endif // WEBRTC_RTC_BASE_SOCKETSERVER_H_
OLDNEW
« no previous file with comments | « webrtc/rtc_base/socketfactory.h ('k') | webrtc/rtc_base/socketstream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698