// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_QT_QT_SHIM_H_ #define UI_QT_QT_SHIM_H_ #include <vector> #include <QApplication> #include <QImage> #include <QObject> #include "ui/qt/qt_interface.h" namespace qt { // This class directly interacts with QT. It's required to be a QObject // to receive signals from QT via slots. class QtShim : public QObject, public QtInterface { … }; } // namespace qt #endif // UI_QT_QT_SHIM_H_