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

Side by Side Diff: webrtc/base/proxyserver.h

Issue 1345433002: Add RTC_ prefix to contructormagic macros. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Formatting fix. Created 5 years, 3 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/base/profiler.h ('k') | webrtc/base/referencecountedsingletonfactory.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
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 static void Read(AsyncSocket* socket, FifoBuffer* buffer); 48 static void Read(AsyncSocket* socket, FifoBuffer* buffer);
49 static void Write(AsyncSocket* socket, FifoBuffer* buffer); 49 static void Write(AsyncSocket* socket, FifoBuffer* buffer);
50 void Destroy(); 50 void Destroy();
51 51
52 static const int kBufferSize = 4096; 52 static const int kBufferSize = 4096;
53 scoped_ptr<AsyncProxyServerSocket> int_socket_; 53 scoped_ptr<AsyncProxyServerSocket> int_socket_;
54 scoped_ptr<AsyncSocket> ext_socket_; 54 scoped_ptr<AsyncSocket> ext_socket_;
55 bool connected_; 55 bool connected_;
56 FifoBuffer out_buffer_; 56 FifoBuffer out_buffer_;
57 FifoBuffer in_buffer_; 57 FifoBuffer in_buffer_;
58 DISALLOW_COPY_AND_ASSIGN(ProxyBinding); 58 RTC_DISALLOW_COPY_AND_ASSIGN(ProxyBinding);
59 }; 59 };
60 60
61 class ProxyServer : public sigslot::has_slots<> { 61 class ProxyServer : public sigslot::has_slots<> {
62 public: 62 public:
63 ProxyServer(SocketFactory* int_factory, const SocketAddress& int_addr, 63 ProxyServer(SocketFactory* int_factory, const SocketAddress& int_addr,
64 SocketFactory* ext_factory, const SocketAddress& ext_ip); 64 SocketFactory* ext_factory, const SocketAddress& ext_ip);
65 ~ProxyServer() override; 65 ~ProxyServer() override;
66 66
67 // Returns the address to which the proxy server is bound 67 // Returns the address to which the proxy server is bound
68 SocketAddress GetServerAddress(); 68 SocketAddress GetServerAddress();
69 69
70 protected: 70 protected:
71 void OnAcceptEvent(AsyncSocket* socket); 71 void OnAcceptEvent(AsyncSocket* socket);
72 virtual AsyncProxyServerSocket* WrapSocket(AsyncSocket* socket) = 0; 72 virtual AsyncProxyServerSocket* WrapSocket(AsyncSocket* socket) = 0;
73 void OnBindingDestroyed(ProxyBinding* binding); 73 void OnBindingDestroyed(ProxyBinding* binding);
74 74
75 private: 75 private:
76 typedef std::list<ProxyBinding*> BindingList; 76 typedef std::list<ProxyBinding*> BindingList;
77 SocketFactory* ext_factory_; 77 SocketFactory* ext_factory_;
78 SocketAddress ext_ip_; 78 SocketAddress ext_ip_;
79 scoped_ptr<AsyncSocket> server_socket_; 79 scoped_ptr<AsyncSocket> server_socket_;
80 BindingList bindings_; 80 BindingList bindings_;
81 DISALLOW_COPY_AND_ASSIGN(ProxyServer); 81 RTC_DISALLOW_COPY_AND_ASSIGN(ProxyServer);
82 }; 82 };
83 83
84 // SocksProxyServer is a simple extension of ProxyServer to implement SOCKS. 84 // SocksProxyServer is a simple extension of ProxyServer to implement SOCKS.
85 class SocksProxyServer : public ProxyServer { 85 class SocksProxyServer : public ProxyServer {
86 public: 86 public:
87 SocksProxyServer(SocketFactory* int_factory, const SocketAddress& int_addr, 87 SocksProxyServer(SocketFactory* int_factory, const SocketAddress& int_addr,
88 SocketFactory* ext_factory, const SocketAddress& ext_ip) 88 SocketFactory* ext_factory, const SocketAddress& ext_ip)
89 : ProxyServer(int_factory, int_addr, ext_factory, ext_ip) { 89 : ProxyServer(int_factory, int_addr, ext_factory, ext_ip) {
90 } 90 }
91 protected: 91 protected:
92 AsyncProxyServerSocket* WrapSocket(AsyncSocket* socket) override; 92 AsyncProxyServerSocket* WrapSocket(AsyncSocket* socket) override;
93 DISALLOW_COPY_AND_ASSIGN(SocksProxyServer); 93 RTC_DISALLOW_COPY_AND_ASSIGN(SocksProxyServer);
94 }; 94 };
95 95
96 } // namespace rtc 96 } // namespace rtc
97 97
98 #endif // WEBRTC_BASE_PROXYSERVER_H_ 98 #endif // WEBRTC_BASE_PROXYSERVER_H_
OLDNEW
« no previous file with comments | « webrtc/base/profiler.h ('k') | webrtc/base/referencecountedsingletonfactory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698