chromium/content/public/browser/render_process_host_priority_client.h

// Copyright 2022 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_RENDER_PROCESS_HOST_PRIORITY_CLIENT_H_
#define CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_PRIORITY_CLIENT_H_

namespace content {

#if BUILDFLAG(IS_ANDROID)
enum class ChildProcessImportance;
#endif

// Interface for a client that contributes Priority to a RenderProcessHost.
// Clients can call RenderProcessHost::UpdateClientPriority() when their
// Priority changes.
class RenderProcessHostPriorityClient {};

}  // namespace content

#endif  // CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_PRIORITY_CLIENT_H_