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

Unified Diff: third_party/crashpad/crashpad/test/scoped_temp_dir_posix.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: third_party/crashpad/crashpad/test/scoped_temp_dir_posix.cc
diff --git a/third_party/crashpad/crashpad/test/scoped_temp_dir_posix.cc b/third_party/crashpad/crashpad/test/scoped_temp_dir_posix.cc
index 0368103698539a039190137a050cafa687a980a6..dbbc71455591996bc01d2d4b40a3f2e9cbb21874 100644
--- a/third_party/crashpad/crashpad/test/scoped_temp_dir_posix.cc
+++ b/third_party/crashpad/crashpad/test/scoped_temp_dir_posix.cc
@@ -52,7 +52,8 @@ base::FilePath ScopedTempDir::CreateTemporaryDirectory() {
}
dir.append("org.chromium.crashpad.test.XXXXXX");
- PCHECK(mkdtemp(&dir[0])) << "mkdtemp " << dir;
+ // mkdtemp |dir|.
+ CHECK(mkdtemp(&dir[0]));
return base::FilePath(dir);
}

Powered by Google App Engine
This is Rietveld 408576698