1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51
   52
   53
   54

content / public / browser / child_process_data.h [blame]

// 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 <string>

#include "base/process/process.h"
#include "content/common/content_export.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;

  // 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.
  int id = 0;

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

  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); }

  explicit ChildProcessData(int process_type);
  ~ChildProcessData();

  ChildProcessData(ChildProcessData&& rhs);

 private:
  // 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_