chromium/content/browser/child_thread_type_switcher_linux.h

// Copyright 2023 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_BROWSER_CHILD_THREAD_TYPE_SWITCHER_LINUX_H_
#define CONTENT_BROWSER_CHILD_THREAD_TYPE_SWITCHER_LINUX_H_

#include "base/process/process_handle.h"
#include "content/common/thread_type_switcher.mojom.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/receiver_set.h"

namespace content {

// Browser-side implementation of mojom::ThreadTypeSwitcher which allows a
// sandboxed process's threads to change their priority (which can't be done
// inside the sandbox).
class ChildThreadTypeSwitcher : public mojom::ThreadTypeSwitcher {};
}  // namespace content

#endif  // CONTENT_BROWSER_CHILD_THREAD_TYPE_SWITCHER_LINUX_H_