summaryrefslogtreecommitdiffstats
path: root/src/core/ozone_platform_qt.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2017-03-20 13:13:03 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2017-03-20 22:46:08 +0000
commit7965546fbe0b654ddad7418edb27a7c94c802019 (patch)
tree228c14bb337b4698b5851fd0504a5c0c422b62ee /src/core/ozone_platform_qt.h
parent1dca94548d78ccef60224c5a2da9ef9ec9eb76f6 (diff)
Cleanup ozone platform
Rename the platform to make it clear it is not just for eglfs. Fixes formating, and also removes parts unnecessary for us that original ozone platforms doesn't use anymore either. Change-Id: I04e5792e2ced2580ae0cbfe208b4e594af60a09a Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Diffstat (limited to 'src/core/ozone_platform_qt.h')
-rw-r--r--src/core/ozone_platform_qt.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/src/core/ozone_platform_qt.h b/src/core/ozone_platform_qt.h
new file mode 100644
index 000000000..8b92b817d
--- /dev/null
+++ b/src/core/ozone_platform_qt.h
@@ -0,0 +1,55 @@
+/****************************************************************************
+**
+** Copyright (C) 2017 The Qt Company Ltd.
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of the QtWebEngine module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 3 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL3 included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 3 requirements
+** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 2.0 or (at your option) the GNU General
+** Public license version 3 or any later version approved by the KDE Free
+** Qt Foundation. The licenses are as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
+** included in the packaging of this file. Please review the following
+** information to ensure the GNU General Public License requirements will
+** be met: https://www.gnu.org/licenses/gpl-2.0.html and
+** https://www.gnu.org/licenses/gpl-3.0.html.
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef UI_OZONE_PLATFORM_EGLFS_OZONE_PLATFORM_QT_H_
+#define UI_OZONE_PLATFORM_EGLFS_OZONE_PLATFORM_QT_H_
+
+#if defined(USE_OZONE)
+
+#include "ui/ozone/public/ozone_platform.h"
+
+namespace ui {
+
+// Constructor hook for use in ozone_platform_list.cc
+OzonePlatform* CreateOzonePlatformQt();
+
+} // namespace ui
+
+#endif // defined(USE_OZONE)
+#endif // UI_OZONE_PLATFORM_EGLFS_OZONE_PLATFORM_QT_H_