910e62b5创建于 1月15日历史提交
// Copyright 2012 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_CHILD_PROCESS_DATA_H_
#define CONTENT_PUBLIC_BROWSER_CHILD_PROCESS_DATA_H_

#include <optional>
#include <string>

#include "base/process/process.h"
#include "content/common/content_export.h"
#include "content/public/browser/child_process_id.h"
#include "sandbox/policy/mojom/sandbox.mojom.h"

namespace content {

// Holds information about a child process.
struct CONTENT_EXPORT ChildProcessData {
  // The type of the process. See the content::ProcessType enum for the
  // well-known process types.
  int process_type;

  // The name of the process.  i.e. for plugins it might be Flash, while for
  // for workers it might be the domain that it's from.
  std::u16string name;

  // The non-localized name of the process used for metrics reporting.
  std::string metrics_name;

  // TODO(crbug.com/379869738): Deprecated, please use GetChildProcessId().
  int id = 0;

  // The Sandbox that this process was launched at. May be invalid prior to
  // process launch.
  std::optional<sandbox::mojom::Sandbox> sandbox_type;

  const ChildProcessId& GetChildProcessId() const;

  const base::Process& GetProcess() const { return process_; }
  // Since base::Process is non-copyable, the caller has to provide a rvalue.
  void SetProcess(base::Process process) { process_ = std::move(process); }

  ChildProcessData(int process_type, ChildProcessId id);
  ~ChildProcessData();

  ChildProcessData(ChildProcessData&& rhs);

 private:
  // The unique identifier for this child process. This identifier is NOT a
  // process ID, and will be unique for all types of child process for
  // one run of the browser.
  ChildProcessId child_process_id_;

  // May be invalid if the process isn't started or is the current process.
  base::Process process_;
};

}  // namespace content

#endif  // CONTENT_PUBLIC_BROWSER_CHILD_PROCESS_DATA_H_