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

Unified Diff: chrome/test/chromedriver/net/port_server.cc

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: chrome/test/chromedriver/net/port_server.cc
diff --git a/chrome/test/chromedriver/net/port_server.cc b/chrome/test/chromedriver/net/port_server.cc
index dc35d06327b9e72d5ead08a3975105830367db68..e4e09e8daf1e1d676e370e6228743f7f73aef289 100644
--- a/chrome/test/chromedriver/net/port_server.cc
+++ b/chrome/test/chromedriver/net/port_server.cc
@@ -43,8 +43,8 @@ void PortReservation::Leak() {
}
PortServer::PortServer(const std::string& path) : path_(path) {
- CHECK(path_.size() && path_[0] == 0)
- << "path must be for Linux abstract namespace";
+ // path must be for Linux abstract namespace
+ CHECK(path_.size() && path_[0] == 0);
}
PortServer::~PortServer() {}

Powered by Google App Engine
This is Rietveld 408576698