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

Unified Diff: webrtc/base/objc/RTCFieldTrials.h

Issue 1899573002: Mark public ObjC APIs as explicitly visible. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 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
Index: webrtc/base/objc/RTCFieldTrials.h
diff --git a/webrtc/base/objc/RTCFieldTrials.h b/webrtc/base/objc/RTCFieldTrials.h
index 837a8f7a60993f7c172bef9e342e8a30e4432bea..52e90fed3a2ec7ad966bcd9063d7a6f5a15f1aa1 100644
--- a/webrtc/base/objc/RTCFieldTrials.h
+++ b/webrtc/base/objc/RTCFieldTrials.h
@@ -8,10 +8,10 @@
* be found in the AUTHORS file in the root of the source tree.
*/
-#include "webrtc/base/objc/RTCMacros.h"
-
#import <Foundation/Foundation.h>
+#import "webrtc/base/objc/RTCMacros.h"
+
typedef NS_OPTIONS(NSUInteger, RTCFieldTrialOptions) {
RTCFieldTrialOptionsNone = 0,
RTCFieldTrialOptionsSendSideBwe = 1 << 0,
@@ -20,4 +20,4 @@ typedef NS_OPTIONS(NSUInteger, RTCFieldTrialOptions) {
/** Must be called before any other call into WebRTC. See:
* webrtc/system_wrappers/include/field_trial_default.h
*/
-RTC_EXPORT void RTCInitFieldTrials(RTCFieldTrialOptions options);
+RTC_EXTERN void RTCInitFieldTrials(RTCFieldTrialOptions options);

Powered by Google App Engine
This is Rietveld 408576698