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

Unified Diff: webrtc/base/objc/RTCLogging.mm

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/RTCLogging.h ('k') | webrtc/build/ios/export_headers » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/objc/RTCLogging.mm
diff --git a/webrtc/base/objc/RTCLogging.mm b/webrtc/base/objc/RTCLogging.mm
index e9afe725d18913e495ea03a7a565532f82256c99..598d52de66430130a920b16220b4169abe4ba7c9 100644
--- a/webrtc/base/objc/RTCLogging.mm
+++ b/webrtc/base/objc/RTCLogging.mm
@@ -14,13 +14,13 @@
rtc::LoggingSeverity RTCGetNativeLoggingSeverity(RTCLoggingSeverity severity) {
switch (severity) {
- case kRTCLoggingSeverityVerbose:
+ case RTCLoggingSeverityVerbose:
return rtc::LS_VERBOSE;
- case kRTCLoggingSeverityInfo:
+ case RTCLoggingSeverityInfo:
return rtc::LS_INFO;
- case kRTCLoggingSeverityWarning:
+ case RTCLoggingSeverityWarning:
return rtc::LS_WARNING;
- case kRTCLoggingSeverityError:
+ case RTCLoggingSeverityError:
return rtc::LS_ERROR;
}
}
« no previous file with comments | « webrtc/base/objc/RTCLogging.h ('k') | webrtc/build/ios/export_headers » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698