blob: 29ba3219196c7b84e95c1c2f8240664f17a67488 [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/message_loop/message_loop.h"
#include "base/run_loop.h"
#include "webrunner/app/common/web_content_runner.h"
int main(int argc, char** argv) {
base::MessageLoopForIO message_loop;
base::RunLoop run_loop;
webrunner::WebContentRunner runner(
base::fuchsia::ServiceDirectory::GetDefault(),
webrunner::WebContentRunner::CreateDefaultWebContext(),
run_loop.QuitClosure());
// Run until there are no Components, or the last service client channel is
// closed.
run_loop.Run();
return 0;
}