| Index: components/tracing/child_memory_dump_manager_delegate_impl.h
|
| diff --git a/components/tracing/child_memory_dump_manager_delegate_impl.h b/components/tracing/child_memory_dump_manager_delegate_impl.h
|
| index 8150a07f3335a1e7d616cf9d102290f27fdd3ccb..007776a81029f771cef794cb7bc83d10045c0542 100644
|
| --- a/components/tracing/child_memory_dump_manager_delegate_impl.h
|
| +++ b/components/tracing/child_memory_dump_manager_delegate_impl.h
|
| @@ -41,11 +41,11 @@
|
|
|
| // Pass kInvalidTracingProcessId to invalidate the id.
|
| void set_tracing_process_id(uint64 id) {
|
| - DCHECK(tracing_process_id_ ==
|
| - base::trace_event::MemoryDumpManager::kInvalidTracingProcessId ||
|
| - id ==
|
| - base::trace_event::MemoryDumpManager::kInvalidTracingProcessId ||
|
| - id == tracing_process_id_);
|
| + DCHECK_IMPLIES(
|
| + tracing_process_id_ !=
|
| + base::trace_event::MemoryDumpManager::kInvalidTracingProcessId,
|
| + id == base::trace_event::MemoryDumpManager::kInvalidTracingProcessId ||
|
| + id == tracing_process_id_);
|
| tracing_process_id_ = id;
|
| }
|
|
|
|
|