16 lines
273 B
C#
16 lines
273 B
C#
//
|
|
// This file manually written from cef/include/internal/cef_types.h.
|
|
// C API name: cef_process_id_t.
|
|
//
|
|
namespace Cef3
|
|
{
|
|
/// <summary>
|
|
/// Existing process IDs.
|
|
/// </summary>
|
|
public enum CefProcessId
|
|
{
|
|
Browser,
|
|
Renderer,
|
|
}
|
|
}
|