blob: 319df85a47b24e09ae9fb68f70fe4a2a2a238290 [file] [log] [blame]
Avi Drissman4e1b7bc32022-09-15 14:03:501// Copyright 2015 The Chromium Authors
Ken Rockot4f8c3c32019-08-16 16:32:332// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CONTENT_BROWSER_FONT_SERVICE_H_
6#define CONTENT_BROWSER_FONT_SERVICE_H_
7
8#include "components/services/font/public/mojom/font_service.mojom.h"
Ken Rockot4f8c3c32019-08-16 16:32:339#include "mojo/public/cpp/bindings/pending_receiver.h"
10
11namespace content {
12
13// Connects |receiver| to the global in-process instance of the Font service.
Lei Zhanged9be3a2021-11-17 22:01:1814void ConnectToFontService(
Ken Rockot4f8c3c32019-08-16 16:32:3315 mojo::PendingReceiver<font_service::mojom::FontService> receiver);
16
17} // namespace content
18
19#endif // CONTENT_BROWSER_FONT_SERVICE_H_