#ifndef CONTENT_COMMON_CHILD_PROCESS_MOJOM_H_
#define CONTENT_COMMON_CHILD_PROCESS_MOJOM_H_
#include <stdint.h>
#include <limits>
#include <optional>
#include <type_traits>
#include <utility>
#include "base/types/cxx23_to_underlying.h"
#include "mojo/public/cpp/bindings/clone_traits.h"
#include "mojo/public/cpp/bindings/equals_traits.h"
#include "mojo/public/cpp/bindings/lib/serialization.h"
#include "mojo/public/cpp/bindings/struct_ptr.h"
#include "mojo/public/cpp/bindings/struct_traits.h"
#include "mojo/public/cpp/bindings/union_traits.h"
#include "third_party/perfetto/include/perfetto/tracing/traced_value_forward.h"
#include "content/common/child_process.mojom-features.h"
#include "content/common/child_process.mojom-shared.h"
#include "content/common/child_process.mojom-forward.h"
#include "ipc/ipc.mojom-forward.h"
#include "mojo/public/mojom/base/file.mojom-forward.h"
#include "mojo/public/mojom/base/generic_pending_receiver.mojom.h"
#include "mojo/public/mojom/base/memory_pressure_level.mojom-forward.h"
#include "services/tracing/public/mojom/background_tracing_agent.mojom-forward.h"
#include "services/tracing/public/mojom/system_tracing_service.mojom-forward.h"
#include <string>
#include <vector>
#include "mojo/public/cpp/bindings/lib/control_message_handler.h"
#include "mojo/public/cpp/bindings/lib/message_size_estimator.h"
#include "mojo/public/cpp/bindings/raw_ptr_impl_ref_traits.h"
#include "content/common/content_export.h"
namespace content::mojom {
class ChildProcessHostProxy;
template <typename ImplRefTraits>
class ChildProcessHostStub;
class ChildProcessHostRequestValidator;
class ChildProcessHostResponseValidator;
class CONTENT_EXPORT ChildProcessHost
: public ChildProcessHostInterfaceBase { … };
class ChildProcessProxy;
template <typename ImplRefTraits>
class ChildProcessStub;
class ChildProcessRequestValidator;
class CONTENT_EXPORT ChildProcess
: public ChildProcessInterfaceBase { … };
class CONTENT_EXPORT ChildProcessHostProxy
: public ChildProcessHost { … };
class CONTENT_EXPORT ChildProcessProxy
: public ChildProcess { … };
class CONTENT_EXPORT ChildProcessHostStubDispatch { … };
template <typename ImplRefTraits =
mojo::RawPtrImplRefTraits<ChildProcessHost>>
class ChildProcessHostStub
: public mojo::MessageReceiverWithResponderStatus {
public:
using ImplPointerType = typename ImplRefTraits::PointerType;
ChildProcessHostStub() = default;
~ChildProcessHostStub() override = default;
void set_sink(ImplPointerType sink) { … }
ImplPointerType& sink() { … }
bool Accept(mojo::Message* message) override { … }
bool AcceptWithResponder(
mojo::Message* message,
std::unique_ptr<mojo::MessageReceiverWithStatus> responder) override { … }
private:
ImplPointerType sink_;
};
class CONTENT_EXPORT ChildProcessStubDispatch { … };
template <typename ImplRefTraits =
mojo::RawPtrImplRefTraits<ChildProcess>>
class ChildProcessStub
: public mojo::MessageReceiverWithResponderStatus {
public:
using ImplPointerType = typename ImplRefTraits::PointerType;
ChildProcessStub() = default;
~ChildProcessStub() override = default;
void set_sink(ImplPointerType sink) { … }
ImplPointerType& sink() { … }
bool Accept(mojo::Message* message) override { … }
bool AcceptWithResponder(
mojo::Message* message,
std::unique_ptr<mojo::MessageReceiverWithStatus> responder) override { … }
private:
ImplPointerType sink_;
};
class CONTENT_EXPORT ChildProcessHostRequestValidator : public mojo::MessageReceiver { … };
class CONTENT_EXPORT ChildProcessRequestValidator : public mojo::MessageReceiver { … };
class CONTENT_EXPORT ChildProcessHostResponseValidator : public mojo::MessageReceiver { … };
}
namespace mojo {
}
#endif