#include "extensions/shell/test/test_shell_main_delegate.h"
#include "base/command_line.h"
#include "content/public/browser/browser_main_runner.h"
#include "content/public/common/content_switches.h"
#include "content/public/test/network_service_test_helper.h"
#include "content/public/utility/content_utility_client.h"
#include "third_party/abseil-cpp/absl/types/variant.h"
namespace {
class TestShellContentUtilityClient : public content::ContentUtilityClient { … };
}
namespace extensions {
TestShellMainDelegate::TestShellMainDelegate() = default;
TestShellMainDelegate::~TestShellMainDelegate() = default;
#if BUILDFLAG(IS_CHROMEOS_LACROS)
std::optional<int> TestShellMainDelegate::PostEarlyInitialization(
InvokedIn invoked_in) {
if (absl::holds_alternative<InvokedInBrowserProcess>(invoked_in)) {
lacros_service_ = std::make_unique<chromeos::LacrosService>();
}
extensions::ShellMainDelegate::PostEarlyInitialization(invoked_in);
return std::nullopt;
}
#endif
content::ContentUtilityClient*
TestShellMainDelegate::CreateContentUtilityClient() { … }
}