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

Unified Diff: third_party/crashpad/crashpad/test/paths_win.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/paths_win.cc
diff --git a/third_party/crashpad/crashpad/test/paths_win.cc b/third_party/crashpad/crashpad/test/paths_win.cc
index 947acd5cce951ca54d4aff8582877eb98a0489fa..019794d0acf4d1eabeb8b796692e828eec6cab9a 100644
--- a/third_party/crashpad/crashpad/test/paths_win.cc
+++ b/third_party/crashpad/crashpad/test/paths_win.cc
@@ -26,7 +26,8 @@ base::FilePath Paths::Executable() {
wchar_t executable_path[_MAX_PATH];
unsigned int len =
GetModuleFileName(nullptr, executable_path, arraysize(executable_path));
- PCHECK(len != 0 && len < arraysize(executable_path)) << "GetModuleFileName";
+ // GetModuleFileName
+ CHECK(len != 0 && len < arraysize(executable_path));
return base::FilePath(executable_path);
}

Powered by Google App Engine
This is Rietveld 408576698