Temporarily define RTC_DISALLOW_ASSIGN in Chromium constructormagic override.

The override will be removed shortly in https://codereview.webrtc.org/1342543004/ This is to make the FYI bots happy meanwhile.

BUG=chromium:468375
TBR=tommi@webrtc.org
NOTRY=true

Review URL: https://codereview.webrtc.org/1345193002

Cr-Commit-Position: refs/heads/master@{#9951}
This commit is contained in:
henrikg
2015-09-16 04:45:24 -07:00
committed by Commit bot
parent 207370f0a2
commit 8dba03d6d7

View File

@ -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__