summaryrefslogtreecommitdiffstats
path: root/src/core/compositor/content_gpu_client_qt.h
blob: 75d9d68be5a2de5f5fa76039945544f113fa8f4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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
#ifndef CONTENT_GPU_CLIENT_QT_H
#define CONTENT_GPU_CLIENT_QT_H

#include "content/public/gpu/content_gpu_client.h"

namespace QtWebEngineCore {

class ContentGpuClientQt : public content::ContentGpuClient {
public:
    explicit ContentGpuClientQt();
    ~ContentGpuClientQt() override;

    // content::ContentGpuClient implementation.
    gpu::SyncPointManager *GetSyncPointManager() override;
};

}

#endif // CONTENT_GPU_CLIENT_QT_H