From 5bf369ecba03f05d6f794f1d06ed23e2382a35c3 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Wed, 5 Apr 2023 13:55:28 +0800 Subject: [PATCH] win: Add missing process_handle.h include Fixes the following error: ../../base/logging.cc(995,24): error: no member named 'GetUniqueIdForProcess' in namespace 'base' stream_ << base::GetUniqueIdForProcess() << ':'; ~~~~~~^ 1 error generated. Change-Id: Ibe3f11956ca491456685db446137b8e39248e696 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4294575 Reviewed-by: Lei Zhang Commit-Queue: Marshall Greenblatt Cr-Commit-Position: refs/heads/main@{#1110671} --- src/base/logging.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/base/logging.cc b/src/base/logging.cc index 496e68dfcd..61a12503f4 100644 --- a/src/base/logging.cc +++ b/src/base/logging.cc @@ -20,6 +20,7 @@ #include "base/debug/crash_logging.h" #include "base/immediate_crash.h" #include "base/pending_task.h" +#include "base/process/process_handle.h" #include "base/strings/string_piece.h" #include "base/task/common/task_annotator.h" #include "base/trace_event/base_tracing.h"