blob: 0f25463cc1ed397ae240e8cff5634ebd6330a367 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
// Qt-Security score:significant reason:default
#ifndef CONTENT_UTILITY_CLIENT_QT_H
#define CONTENT_UTILITY_CLIENT_QT_H
#include "content/public/utility/content_utility_client.h"
class MashServiceFactory;
class UtilityMessageHandler;
namespace QtWebEngineCore {
class ContentUtilityClientQt : public content::ContentUtilityClient {
public:
ContentUtilityClientQt();
~ContentUtilityClientQt() override;
// content::ContentUtilityClient:
void RegisterIOThreadServices(mojo::ServiceFactory &services) override;
void RegisterMainThreadServices(mojo::ServiceFactory &services) override;
};
} // namespace
#endif
|