blob: b5e2a098c58b81c91d8942430d1e88fd07924283 [file] [log] [blame]
// Copyright 2015 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/task/single_thread_task_executor.h"
#include "components/services/font/font_service_app.h"
#include "services/service_manager/public/cpp/service_executable/service_main.h"
void ServiceMain(service_manager::mojom::ServiceRequest request) {
base::SingleThreadTaskExecutor main_thread_task_executor;
font_service::FontServiceApp(std::move(request)).RunUntilTermination();
}