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

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

Issue 1845133002: Minor ObjC header updates. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « webrtc/api/objctests/RTCDataChannelConfigurationTest.mm ('k') | webrtc/base/objc/RTCFileLogger.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/objc/RTCFileLogger.h
diff --git a/webrtc/base/objc/RTCFileLogger.h b/webrtc/base/objc/RTCFileLogger.h
index c736012c25f6ec267e2b60e03ffc211e8c63b007..281be4e31ff76fb08ab11e230dee0e5069ebf56a 100644
--- a/webrtc/base/objc/RTCFileLogger.h
+++ b/webrtc/base/objc/RTCFileLogger.h
@@ -11,17 +11,19 @@
#import <Foundation/Foundation.h>
typedef NS_ENUM(NSUInteger, RTCFileLoggerSeverity) {
- kRTCFileLoggerSeverityVerbose,
- kRTCFileLoggerSeverityInfo,
- kRTCFileLoggerSeverityWarning,
- kRTCFileLoggerSeverityError
+ RTCFileLoggerSeverityVerbose,
+ RTCFileLoggerSeverityInfo,
+ RTCFileLoggerSeverityWarning,
+ RTCFileLoggerSeverityError
};
typedef NS_ENUM(NSUInteger, RTCFileLoggerRotationType) {
- kRTCFileLoggerTypeCall,
- kRTCFileLoggerTypeApp,
+ RTCFileLoggerTypeCall,
+ RTCFileLoggerTypeApp,
};
+NS_ASSUME_NONNULL_BEGIN
+
// This class intercepts WebRTC logs and saves them to a file. The file size
// will not exceed the given maximum bytesize. When the maximum bytesize is
// reached, logs are rotated according to the rotationType specified.
@@ -67,3 +69,6 @@ typedef NS_ENUM(NSUInteger, RTCFileLoggerRotationType) {
- (NSData *)logData;
@end
+
+NS_ASSUME_NONNULL_END
+
« no previous file with comments | « webrtc/api/objctests/RTCDataChannelConfigurationTest.mm ('k') | webrtc/base/objc/RTCFileLogger.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698