#ifndef CONTENT_APP_CONTENT_MAIN_RUNNER_IMPL_H_
#define CONTENT_APP_CONTENT_MAIN_RUNNER_IMPL_H_
#include <memory>
#include <optional>
#include "base/functional/callback_helpers.h"
#include "base/memory/raw_ptr.h"
#include "content/browser/startup_data_impl.h"
#include "content/public/app/content_main.h"
#include "content/public/app/content_main_runner.h"
#include "content/public/common/main_function_params.h"
#include "mojo/core/embedder/scoped_ipc_support.h"
namespace base {
class AtExitManager;
}
namespace discardable_memory {
class DiscardableSharedMemoryManager;
}
namespace content {
class MojoIpcSupport;
class ContentMainRunnerImpl : public ContentMainRunner { … };
}
#endif