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

Unified Diff: webrtc/base/objc/RTCLogging.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/base/objc/RTCFileLogger.mm ('k') | webrtc/base/objc/RTCLogging.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/objc/RTCLogging.h
diff --git a/webrtc/base/objc/RTCLogging.h b/webrtc/base/objc/RTCLogging.h
index 19fade5cfc7b8ccee5c21252ffdba8931741482c..fbc4ffade279ef83175e31cc15f8945d97c42614 100644
--- a/webrtc/base/objc/RTCLogging.h
+++ b/webrtc/base/objc/RTCLogging.h
@@ -12,10 +12,10 @@
// Subset of rtc::LoggingSeverity.
typedef NS_ENUM(NSInteger, RTCLoggingSeverity) {
- kRTCLoggingSeverityVerbose,
- kRTCLoggingSeverityInfo,
- kRTCLoggingSeverityWarning,
- kRTCLoggingSeverityError,
+ RTCLoggingSeverityVerbose,
+ RTCLoggingSeverityInfo,
+ RTCLoggingSeverityWarning,
+ RTCLoggingSeverityError,
};
#if defined(__cplusplus)
@@ -53,16 +53,16 @@ extern NSString* RTCFileName(const char* filePath);
} while (false)
#define RTCLogVerbose(format, ...) \
- RTCLogFormat(kRTCLoggingSeverityVerbose, format, ##__VA_ARGS__) \
+ RTCLogFormat(RTCLoggingSeverityVerbose, format, ##__VA_ARGS__) \
#define RTCLogInfo(format, ...) \
- RTCLogFormat(kRTCLoggingSeverityInfo, format, ##__VA_ARGS__) \
+ RTCLogFormat(RTCLoggingSeverityInfo, format, ##__VA_ARGS__) \
#define RTCLogWarning(format, ...) \
- RTCLogFormat(kRTCLoggingSeverityWarning, format, ##__VA_ARGS__) \
+ RTCLogFormat(RTCLoggingSeverityWarning, format, ##__VA_ARGS__) \
#define RTCLogError(format, ...) \
- RTCLogFormat(kRTCLoggingSeverityError, format, ##__VA_ARGS__) \
+ RTCLogFormat(RTCLoggingSeverityError, format, ##__VA_ARGS__) \
#if !defined(NDEBUG)
#define RTCLogDebug(format, ...) RTCLogInfo(format, ##__VA_ARGS__)
« no previous file with comments | « webrtc/base/objc/RTCFileLogger.mm ('k') | webrtc/base/objc/RTCLogging.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698