Chromium Code Reviews| Index: webrtc/api/objc/RTCDataChannel.h |
| diff --git a/webrtc/api/objc/RTCDataChannel.h b/webrtc/api/objc/RTCDataChannel.h |
| index 59ab2b8b26fddf9706e85d46dfddf5ab4b8daa3b..b2a539916f0d85ed0be35b7afad6f717560cea31 100644 |
| --- a/webrtc/api/objc/RTCDataChannel.h |
| +++ b/webrtc/api/objc/RTCDataChannel.h |
| @@ -11,6 +11,8 @@ |
| #import <AvailabilityMacros.h> |
| #import <Foundation/Foundation.h> |
| +#import "webrtc/base/objc/RTCMacros.h" |
| + |
| NS_ASSUME_NONNULL_BEGIN |
| @interface RTCDataBuffer : NSObject |
|
Chuck
2016/04/18 23:24:06
Does this one need RTC_EXPORT?
tkchin_webrtc
2016/04/18 23:36:40
Yes, thanks.
|
| @@ -33,6 +35,7 @@ NS_ASSUME_NONNULL_BEGIN |
| @class RTCDataChannel; |
| +RTC_EXPORT |
| @protocol RTCDataChannelDelegate <NSObject> |
| /** The data channel state changed. */ |
| @@ -58,7 +61,7 @@ typedef NS_ENUM(NSInteger, RTCDataChannelState) { |
| RTCDataChannelStateClosed, |
| }; |
| - |
| +RTC_EXPORT |
| @interface RTCDataChannel : NSObject |
| /** |