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

Unified Diff: webrtc/base/macutils.cc

Issue 2620303003: Replace ASSERT by RTC_DCHECK in all non-test code. (Closed)
Patch Set: Address final nits. Created 3 years, 11 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/httpserver.cc ('k') | webrtc/base/messagequeue.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/macutils.cc
diff --git a/webrtc/base/macutils.cc b/webrtc/base/macutils.cc
index c28ac69b4e68aa8dfedea413a9c36e48b6c701be..794f451dcd2c1408a95166e379cedbd3ee75bb27 100644
--- a/webrtc/base/macutils.cc
+++ b/webrtc/base/macutils.cc
@@ -73,7 +73,7 @@ void DecodeFourChar(UInt32 fc, std::string* out) {
}
static bool GetOSVersion(int* major, int* minor, int* bugfix) {
- ASSERT(major && minor && bugfix);
+ RTC_DCHECK(major && minor && bugfix);
struct utsname uname_info;
if (uname(&uname_info) != 0)
return false;
« no previous file with comments | « webrtc/base/httpserver.cc ('k') | webrtc/base/messagequeue.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698