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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/base/profiler.h ('k') | webrtc/base/referencecountedsingletonfactory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/proxyserver.h
diff --git a/webrtc/base/proxyserver.h b/webrtc/base/proxyserver.h
index 711ed55bf881c4de64d325041bd2acdf5b12d93a..adb26ae9d046f8befe3a88fdb2a627d5849e6fff 100644
--- a/webrtc/base/proxyserver.h
+++ b/webrtc/base/proxyserver.h
@@ -55,7 +55,7 @@ class ProxyBinding : public sigslot::has_slots<> {
bool connected_;
FifoBuffer out_buffer_;
FifoBuffer in_buffer_;
- DISALLOW_COPY_AND_ASSIGN(ProxyBinding);
+ RTC_DISALLOW_COPY_AND_ASSIGN(ProxyBinding);
};
class ProxyServer : public sigslot::has_slots<> {
@@ -78,7 +78,7 @@ class ProxyServer : public sigslot::has_slots<> {
SocketAddress ext_ip_;
scoped_ptr<AsyncSocket> server_socket_;
BindingList bindings_;
- DISALLOW_COPY_AND_ASSIGN(ProxyServer);
+ RTC_DISALLOW_COPY_AND_ASSIGN(ProxyServer);
};
// SocksProxyServer is a simple extension of ProxyServer to implement SOCKS.
@@ -90,7 +90,7 @@ class SocksProxyServer : public ProxyServer {
}
protected:
AsyncProxyServerSocket* WrapSocket(AsyncSocket* socket) override;
- DISALLOW_COPY_AND_ASSIGN(SocksProxyServer);
+ RTC_DISALLOW_COPY_AND_ASSIGN(SocksProxyServer);
};
} // namespace rtc
« 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