blob: d3a90057d21913ed8a354d68172f9d988b69cd44 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/fuchsia/service_directory.h"
#include "base/fuchsia/service_directory_client.h"
#include "base/message_loop/message_loop.h"
#include "base/run_loop.h"
#include "fuchsia/runners/cast/cast_runner.h"
int main(int argc, char** argv) {
base::MessageLoopForIO message_loop;
base::RunLoop run_loop;
CastRunner runner(
base::fuchsia::ServiceDirectory::GetDefault(),
WebContentRunner::CreateIncognitoWebContext(),
run_loop.QuitClosure());
// Run until there are no Components, or the last service client channel is
// closed.
run_loop.Run();
return 0;
}