// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_PUBLIC_BROWSER_SERVICE_PROCESS_INFO_H_ #define CONTENT_PUBLIC_BROWSER_SERVICE_PROCESS_INFO_H_ #include <stdint.h> #include <optional> #include <string> #include "base/process/process.h" #include "base/types/id_type.h" #include "content/common/content_export.h" #include "url/gurl.h" namespace content { namespace internal { struct CONTENT_EXPORT ServiceProcessIdTypeMarker { … }; } // namespace internal // An opaque ID type used to uniquely identify service process instances. This // is separate from system PID. Values are never reused. ServiceProcessId; // Information about a running (or very recently running) service process. // // This class is move-only but can be copied by calling the Duplicate() method. // This is explicitly defined to prevent accidental copying, as the Duplicate() // operation will call Duplicate() on the underlying base::Process. class CONTENT_EXPORT ServiceProcessInfo { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_SERVICE_PROCESS_INFO_H_