/**************************************************************************** ** ** Copyright (C) 2016 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$ ** ****************************************************************************/ #include "ozone/gl_context_qt.h" #include "qtwebenginecoreglobal_p.h" #include "web_contents_view_qt.h" #include "base/values.h" #include "content/browser/renderer_host/render_widget_host_view_base.h" #include "content/browser/web_contents/web_contents_impl.h" #include "content/common/font_list.h" #include "ui/base/dragdrop/os_exchange_data.h" #include "ui/base/dragdrop/os_exchange_data_provider_factory.h" #include "ui/events/devices/device_data_manager.h" #include "ui/events/platform/platform_event_source.h" #include "ppapi/buildflags/buildflags.h" #include #include #include #include #include #include #if defined(USE_AURA) && !defined(USE_OZONE) #include "ui/base/dragdrop/os_exchange_data.h" #include "ui/gfx/render_text.h" #include "ui/gfx/platform_font.h" #endif #if defined(USE_OPENSSL_CERTS) #include "net/ssl/openssl_client_key_store.h" #endif #if !QT_CONFIG(webengine_webrtc) && QT_CONFIG(webengine_extensions) #include "chrome/browser/extensions/api/webrtc_logging_private/webrtc_logging_private_api.h" #endif void *GetQtXDisplay() { return GLContextHelper::getXDisplay(); } namespace content { class WebContentsImpl; class WebContentsView; class WebContentsViewDelegate; class RenderViewHostDelegateView; WebContentsView* CreateWebContentsView(WebContentsImpl *web_contents, WebContentsViewDelegate *, RenderViewHostDelegateView **render_view_host_delegate_view) { QtWebEngineCore::WebContentsViewQt* rv = new QtWebEngineCore::WebContentsViewQt(web_contents); *render_view_host_delegate_view = rv; return rv; } #if defined(Q_OS_MACOS) std::string getQtPrefix() { const QString prefix = QLibraryInfo::location(QLibraryInfo::PrefixPath); return prefix.toStdString(); } #endif } // namespace content #if defined(USE_AURA) || defined(USE_OZONE) namespace content { // content/common/font_list.h std::unique_ptr GetFontList_SlowBlocking() { std::unique_ptr font_list(new base::ListValue); for (auto family : QFontDatabase::families()){ std::unique_ptr font_item(new base::ListValue()); font_item->AppendString(family.toStdString()); font_item->AppendString(family.toStdString()); // localized name. // TODO(yusukes): Support localized family names. font_list->Append(std::move(font_item)); } return font_list; } } // namespace content namespace aura { class Window; } namespace wm { class ActivationClient; ActivationClient *GetActivationClient(aura::Window *) { return nullptr; } } // namespace wm #endif // defined(USE_AURA) || defined(USE_OZONE) std::unique_ptr ui::OSExchangeDataProviderFactory::CreateProvider() { return nullptr; } #if !QT_CONFIG(webengine_webrtc) && QT_CONFIG(webengine_extensions) namespace extensions { ExtensionFunction::ResponseAction WebrtcLoggingPrivateSetMetaDataFunction::Run() { return RespondNow(NoArguments()); } ExtensionFunction::ResponseAction WebrtcLoggingPrivateStartFunction::Run() { return RespondNow(NoArguments()); } ExtensionFunction::ResponseAction WebrtcLoggingPrivateSetUploadOnRenderCloseFunction::Run() { return RespondNow(NoArguments()); } ExtensionFunction::ResponseAction WebrtcLoggingPrivateStopFunction::Run() { return RespondNow(NoArguments()); } ExtensionFunction::ResponseAction WebrtcLoggingPrivateStoreFunction::Run() { return RespondNow(NoArguments()); } ExtensionFunction::ResponseAction WebrtcLoggingPrivateUploadStoredFunction::Run() { return RespondNow(NoArguments()); } ExtensionFunction::ResponseAction WebrtcLoggingPrivateUploadFunction::Run() { return RespondNow(NoArguments()); } ExtensionFunction::ResponseAction WebrtcLoggingPrivateDiscardFunction::Run() { return RespondNow(NoArguments()); } ExtensionFunction::ResponseAction WebrtcLoggingPrivateStartRtpDumpFunction::Run() { return RespondNow(NoArguments()); } ExtensionFunction::ResponseAction WebrtcLoggingPrivateStopRtpDumpFunction::Run() { return RespondNow(NoArguments()); } ExtensionFunction::ResponseAction WebrtcLoggingPrivateStartAudioDebugRecordingsFunction::Run() { return RespondNow(NoArguments()); } ExtensionFunction::ResponseAction WebrtcLoggingPrivateStopAudioDebugRecordingsFunction::Run() { return RespondNow(NoArguments()); } ExtensionFunction::ResponseAction WebrtcLoggingPrivateStartEventLoggingFunction::Run() { return RespondNow(NoArguments()); } ExtensionFunction::ResponseAction WebrtcLoggingPrivateGetLogsDirectoryFunction::Run() { return RespondNow(NoArguments()); } } // namespace extensions #endif // !QT_CONFIG(webengine_webrtc) && QT_CONFIG(webengine_extensions)