| Index: base/profiler/native_stack_sampler_win.cc
|
| diff --git a/base/profiler/native_stack_sampler_win.cc b/base/profiler/native_stack_sampler_win.cc
|
| index e1605109fe960d769523733b2a1190700b250d28..2e4ad030a7472a37dbd1c210acd0ca8b07ed9176 100644
|
| --- a/base/profiler/native_stack_sampler_win.cc
|
| +++ b/base/profiler/native_stack_sampler_win.cc
|
| @@ -301,7 +301,8 @@ ScopedSuspendThread::~ScopedSuspendThread() {
|
| ScopedDisablePriorityBoost disable_priority_boost(thread_handle_);
|
| bool resume_thread_succeeded =
|
| ::ResumeThread(thread_handle_) != static_cast<DWORD>(-1);
|
| - CHECK(resume_thread_succeeded) << "ResumeThread failed: " << GetLastError();
|
| + // ResumeThread failed.
|
| + CHECK(resume_thread_succeeded);
|
| }
|
|
|
| // Tests whether |stack_pointer| points to a location in the guard page.
|
|
|