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

Unified Diff: webrtc/base/nssidentity.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/natsocketfactory.h ('k') | webrtc/base/opensslidentity.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/nssidentity.h
diff --git a/webrtc/base/nssidentity.h b/webrtc/base/nssidentity.h
index 867f594b844ef4db292fe44dc3ecc3085c6ba17d..a28ce62ba16469e305e2aa5b167de05fe7c06cd6 100644
--- a/webrtc/base/nssidentity.h
+++ b/webrtc/base/nssidentity.h
@@ -60,7 +60,7 @@ class NSSKeyPair {
SECKEYPublicKey* pubkey_;
SSLKEAType ssl_kea_type_;
- DISALLOW_COPY_AND_ASSIGN(NSSKeyPair);
+ RTC_DISALLOW_COPY_AND_ASSIGN(NSSKeyPair);
};
@@ -109,7 +109,7 @@ class NSSCertificate : public SSLCertificate {
CERTCertificate* certificate_;
scoped_ptr<SSLCertChain> chain_;
- DISALLOW_COPY_AND_ASSIGN(NSSCertificate);
+ RTC_DISALLOW_COPY_AND_ASSIGN(NSSCertificate);
};
// Represents a SSL key pair and certificate for NSS.
@@ -135,7 +135,7 @@ class NSSIdentity : public SSLIdentity {
rtc::scoped_ptr<NSSKeyPair> keypair_;
rtc::scoped_ptr<NSSCertificate> certificate_;
- DISALLOW_COPY_AND_ASSIGN(NSSIdentity);
+ RTC_DISALLOW_COPY_AND_ASSIGN(NSSIdentity);
};
} // namespace rtc
« no previous file with comments | « webrtc/base/natsocketfactory.h ('k') | webrtc/base/opensslidentity.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698