// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "remoting/host/base/process_util.h" #include <string.h> #include <string> #include "base/files/file_util.h" #include "base/logging.h" #include "base/notreached.h" #include "base/strings/string_util.h" #include "base/strings/stringprintf.h" #include "build/build_config.h" #if BUILDFLAG(IS_WIN) #include <windows.h> #include "base/win/scoped_handle.h" #endif namespace remoting { base::FilePath GetProcessImagePath(base::ProcessId pid) { … } } // namespace remoting