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); |
}; |