| Index: content/public/browser/child_process_data.h
|
| ===================================================================
|
| --- content/public/browser/child_process_data.h (revision 0)
|
| +++ content/public/browser/child_process_data.h (revision 0)
|
| @@ -0,0 +1,38 @@
|
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef CONTENT_PUBLIC_CHILD_PROCESS_DATA_H_
|
| +#define CONTENT_PUBLIC_CHILD_PROCESS_DATA_H_
|
| +#pragma once
|
| +
|
| +#include "base/process.h"
|
| +#include "base/string16.h"
|
| +#include "content/common/content_export.h"
|
| +#include "content/public/common/process_type.h"
|
| +
|
| +namespace content {
|
| +
|
| +// Holds information about a child process.
|
| +struct ChildProcessData {
|
| + // The type of the process.
|
| + content::ProcessType 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.
|
| + string16 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;
|
| +
|
| + // The handle to the process.
|
| + base::ProcessHandle handle;
|
| +
|
| + ChildProcessData() : id(0), handle(base::kNullProcessHandle) {}
|
| +};
|
| +
|
| +} // namespace content
|
| +
|
| +#endif // CONTENT_PUBLIC_CHILD_PROCESS_DATA_H_
|
|
|
| Property changes on: content\public\browser\child_process_data.h
|
| ___________________________________________________________________
|
| Added: svn:eol-style
|
| + LF
|
|
|
|
|