summaryrefslogtreecommitdiffstats
path: root/src/core/custom_handlers/register_protocol_handler_request_controller_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/custom_handlers/register_protocol_handler_request_controller_impl.h')
-rw-r--r--src/core/custom_handlers/register_protocol_handler_request_controller_impl.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/core/custom_handlers/register_protocol_handler_request_controller_impl.h b/src/core/custom_handlers/register_protocol_handler_request_controller_impl.h
new file mode 100644
index 000000000..073ca9bf8
--- /dev/null
+++ b/src/core/custom_handlers/register_protocol_handler_request_controller_impl.h
@@ -0,0 +1,38 @@
+// 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 REGISTER_PROTOCOL_HANDLER_REQUEST_CONTROLLER_IMPL_H
+#define REGISTER_PROTOCOL_HANDLER_REQUEST_CONTROLLER_IMPL_H
+
+#include "register_protocol_handler_request_controller.h"
+
+#include "content/public/browser/web_contents_observer.h"
+#include "components/custom_handlers/protocol_handler.h"
+
+namespace custom_handlers {
+class ProtocolHandlerRegistry;
+}
+
+namespace QtWebEngineCore {
+
+class RegisterProtocolHandlerRequestControllerImpl final : public RegisterProtocolHandlerRequestController,
+ private content::WebContentsObserver {
+public:
+ RegisterProtocolHandlerRequestControllerImpl(
+ content::WebContents *webContents,
+ custom_handlers::ProtocolHandler handler);
+
+ ~RegisterProtocolHandlerRequestControllerImpl();
+
+protected:
+ void accepted() override;
+ void rejected() override;
+
+private:
+ custom_handlers::ProtocolHandlerRegistry *protocolHandlerRegistry();
+ custom_handlers::ProtocolHandler m_handler;
+};
+
+} // namespace QtWebEngineCore
+
+#endif // REGISTER_PROTOCOL_HANDLER_REQUEST_CONTROLLER_IMPL_H