summaryrefslogtreecommitdiff
path: root/chromium/components/services/font/main.cc
blob: a9b138679492efb58a993ecce9b86db7307a1861 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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/message_loop/message_loop.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::MessageLoop message_loop;
  font_service::FontServiceApp(std::move(request)).RunUntilTermination();
}