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

Unified Diff: components/cronet/ios/Cronet.mm

Issue 2561963002: base: Remove the string logging from CHECK(). (Closed)
Patch Set: checkstring: rebase Created 4 years 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: components/cronet/ios/Cronet.mm
diff --git a/components/cronet/ios/Cronet.mm b/components/cronet/ios/Cronet.mm
index 1fd0c3d99e0d12635e12cd4058532fee2b54c16f..9b2812fb9ca90cb7e447ce0d7c75071f6e633782 100644
--- a/components/cronet/ios/Cronet.mm
+++ b/components/cronet/ios/Cronet.mm
@@ -129,7 +129,8 @@ class CronetHttpProtocolHandlerDelegate
}
+ (void)checkNotStarted {
- CHECK(gChromeNet == NULL) << "Cronet is already started.";
+ // Cronet is already started.
+ CHECK(gChromeNet == NULL);
}
+ (void)setHttp2Enabled:(BOOL)http2Enabled {

Powered by Google App Engine
This is Rietveld 408576698