| Index: webrtc/overrides/webrtc/base/constructormagic.h
|
| diff --git a/webrtc/overrides/webrtc/base/constructormagic.h b/webrtc/overrides/webrtc/base/constructormagic.h
|
| index 91e27489b1e7b3ead2424681ef23ac79735547ab..f71fe82024c6ac38efd2ccd2e6f2acb5187739be 100644
|
| --- a/webrtc/overrides/webrtc/base/constructormagic.h
|
| +++ b/webrtc/overrides/webrtc/base/constructormagic.h
|
| @@ -17,4 +17,13 @@
|
|
|
| #include "base/macros.h"
|
|
|
| +#define RTC_DISALLOW_ASSIGN(TypeName) \
|
| + DISALLOW_ASSIGN(TypeName)
|
| +
|
| +#define RTC_DISALLOW_COPY_AND_ASSIGN(TypeName) \
|
| + DISALLOW_COPY_AND_ASSIGN(TypeName)
|
| +
|
| +#define RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
|
| + DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName)
|
| +
|
| #endif // OVERRIDES_WEBRTC_BASE_CONSTRUCTORMAGIC_H__
|
|
|