From eee482929a81ae9d685a0ee140733227ceac6543 Mon Sep 17 00:00:00 2001 From: Pierre Rossi Date: Thu, 14 Aug 2014 02:21:56 +0800 Subject: Integrate with WebChannel Provide a transport mechanism for WebChannel over chromium IPC and expose WebChannel in our experimental QML API. Co-authored by Milian Wolff. Change-Id: Ia24b1d4ebc8515de677d4849ec33cb55c963918e Reviewed-by: Andras Becsi --- src/core/renderer/web_channel_ipc_transport.h | 59 +++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 src/core/renderer/web_channel_ipc_transport.h (limited to 'src/core/renderer/web_channel_ipc_transport.h') diff --git a/src/core/renderer/web_channel_ipc_transport.h b/src/core/renderer/web_channel_ipc_transport.h new file mode 100644 index 000000000..29e819e95 --- /dev/null +++ b/src/core/renderer/web_channel_ipc_transport.h @@ -0,0 +1,59 @@ +/**************************************************************************** +** +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/legal +** +** 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 Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/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.LGPLv3 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.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 later as published by the Free +** Software Foundation and appearing in the file LICENSE.GPL included in +** the packaging of this file. Please review the following information to +** ensure the GNU General Public License version 2.0 requirements will be +** met: http://www.gnu.org/licenses/gpl-2.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#ifndef NAVIGATOR_QT_EXTENSION_H +#define NAVIGATOR_QT_EXTENSION_H + +#include "base/values.h" +#include "content/public/renderer/render_view_observer.h" +#include + +namespace v8 { +class Extension; +} + +class WebChannelIPCTransport : public content::RenderViewObserver { +public: + static v8::Extension* getV8Extension(); + + WebChannelIPCTransport(content::RenderView *); + +private: + void dispatchWebChannelMessage(const std::vector &binaryJSON); + virtual bool OnMessageReceived(const IPC::Message &message) Q_DECL_OVERRIDE; +}; + +#endif // NAVIGATOR_QT_EXTENSION_H -- cgit v1.2.3