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

Unified Diff: third_party/crashpad/crashpad/snapshot/win/crashpad_snapshot_test_crashing_child.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/snapshot/win/crashpad_snapshot_test_crashing_child.cc
diff --git a/third_party/crashpad/crashpad/snapshot/win/crashpad_snapshot_test_crashing_child.cc b/third_party/crashpad/crashpad/snapshot/win/crashpad_snapshot_test_crashing_child.cc
index 2cfb99060e58946b2215d3932cd02841f6cb7c99..fb2d47a63d5dd74c8269f12328c0c84079a14c8a 100644
--- a/third_party/crashpad/crashpad/snapshot/win/crashpad_snapshot_test_crashing_child.cc
+++ b/third_party/crashpad/crashpad/snapshot/win/crashpad_snapshot_test_crashing_child.cc
@@ -35,7 +35,8 @@ int wmain(int argc, wchar_t* argv[]) {
CHECK(client.SetHandlerIPCPipe(argv[1]));
HANDLE out = GetStdHandle(STD_OUTPUT_HANDLE);
- PCHECK(out != INVALID_HANDLE_VALUE) << "GetStdHandle";
+ // GetStdHandle
+ CHECK(out != INVALID_HANDLE_VALUE);
crashpad::WinVMAddress break_address = CurrentAddress();
crashpad::CheckedWriteFile(out, &break_address, sizeof(break_address));

Powered by Google App Engine
This is Rietveld 408576698