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

Unified Diff: webrtc/base/opensslidentity.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/nssidentity.h ('k') | webrtc/base/profiler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/opensslidentity.h
diff --git a/webrtc/base/opensslidentity.h b/webrtc/base/opensslidentity.h
index 72de6c0e7071d1b5bb11a7b0e6aa516ade36c159..d8ba138f625484fddca35a38ff3f449eeea86832 100644
--- a/webrtc/base/opensslidentity.h
+++ b/webrtc/base/opensslidentity.h
@@ -45,7 +45,7 @@ class OpenSSLKeyPair {
EVP_PKEY* pkey_;
- DISALLOW_COPY_AND_ASSIGN(OpenSSLKeyPair);
+ RTC_DISALLOW_COPY_AND_ASSIGN(OpenSSLKeyPair);
};
// OpenSSLCertificate encapsulates an OpenSSL X509* certificate object,
@@ -92,7 +92,7 @@ class OpenSSLCertificate : public SSLCertificate {
X509* x509_;
- DISALLOW_COPY_AND_ASSIGN(OpenSSLCertificate);
+ RTC_DISALLOW_COPY_AND_ASSIGN(OpenSSLCertificate);
};
// Holds a keypair and certificate together, and a method to generate
@@ -120,7 +120,7 @@ class OpenSSLIdentity : public SSLIdentity {
scoped_ptr<OpenSSLKeyPair> key_pair_;
scoped_ptr<OpenSSLCertificate> certificate_;
- DISALLOW_COPY_AND_ASSIGN(OpenSSLIdentity);
+ RTC_DISALLOW_COPY_AND_ASSIGN(OpenSSLIdentity);
};
« no previous file with comments | « webrtc/base/nssidentity.h ('k') | webrtc/base/profiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698