diff options
Diffstat (limited to 'Source/WebKit2/WebProcess/WebPage/RemoteWebInspectorUI.cpp')
-rw-r--r-- | Source/WebKit2/WebProcess/WebPage/RemoteWebInspectorUI.cpp | 152 |
1 files changed, 152 insertions, 0 deletions
diff --git a/Source/WebKit2/WebProcess/WebPage/RemoteWebInspectorUI.cpp b/Source/WebKit2/WebProcess/WebPage/RemoteWebInspectorUI.cpp new file mode 100644 index 000000000..35e0450ac --- /dev/null +++ b/Source/WebKit2/WebProcess/WebPage/RemoteWebInspectorUI.cpp @@ -0,0 +1,152 @@ +/* + * Copyright (C) 2016 Apple Inc. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS + * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF + * THE POSSIBILITY OF SUCH DAMAGE. + */ + +#include "config.h" +#include "RemoteWebInspectorUI.h" + +#include "RemoteWebInspectorProxyMessages.h" +#include "RemoteWebInspectorUIMessages.h" +#include "WebPage.h" +#include "WebProcess.h" +#include <WebCore/Chrome.h> +#include <WebCore/DOMWrapperWorld.h> +#include <WebCore/InspectorController.h> +#include <WebCore/ScriptGlobalObject.h> +#include <WebCore/ScriptState.h> + +using namespace WebCore; + +namespace WebKit { + +Ref<RemoteWebInspectorUI> RemoteWebInspectorUI::create(WebPage& page) +{ + return adoptRef(*new RemoteWebInspectorUI(page)); +} + +RemoteWebInspectorUI::RemoteWebInspectorUI(WebPage& page) + : m_page(page) + , m_frontendAPIDispatcher(page) +{ +} + +void RemoteWebInspectorUI::initialize(const String& debuggableType, const String& backendCommandsURL) +{ + m_debuggableType = debuggableType; + m_backendCommandsURL = backendCommandsURL; + + m_page.corePage()->inspectorController().setInspectorFrontendClient(this); + + m_frontendAPIDispatcher.reset(); + m_frontendAPIDispatcher.dispatchCommand(ASCIILiteral("setDockingUnavailable"), true); +} + +void RemoteWebInspectorUI::didSave(const String& url) +{ + m_frontendAPIDispatcher.dispatchCommand(ASCIILiteral("savedURL"), url); +} + +void RemoteWebInspectorUI::didAppend(const String& url) +{ + m_frontendAPIDispatcher.dispatchCommand(ASCIILiteral("appendedToURL"), url); +} + +void RemoteWebInspectorUI::sendMessageToFrontend(const String& message) +{ + m_frontendAPIDispatcher.dispatchMessageAsync(message); +} + +void RemoteWebInspectorUI::sendMessageToBackend(const String& message) +{ + WebProcess::singleton().parentProcessConnection()->send(Messages::RemoteWebInspectorProxy::SendMessageToBackend(message), m_page.pageID()); +} + +void RemoteWebInspectorUI::windowObjectCleared() +{ + if (m_frontendHost) + m_frontendHost->disconnectClient(); + + m_frontendHost = InspectorFrontendHost::create(this, m_page.corePage()); + ScriptGlobalObject::set(*execStateFromPage(mainThreadNormalWorld(), m_page.corePage()), ASCIILiteral("InspectorFrontendHost"), *m_frontendHost); +} + +void RemoteWebInspectorUI::frontendLoaded() +{ + m_frontendAPIDispatcher.frontendLoaded(); + + m_frontendAPIDispatcher.dispatchCommand(ASCIILiteral("setIsVisible"), true); + + bringToFront(); +} + +void RemoteWebInspectorUI::startWindowDrag() +{ + WebProcess::singleton().parentProcessConnection()->send(Messages::RemoteWebInspectorProxy::StartWindowDrag(), m_page.pageID()); +} + +void RemoteWebInspectorUI::moveWindowBy(float x, float y) +{ + FloatRect frameRect = m_page.corePage()->chrome().windowRect(); + frameRect.move(x, y); + m_page.corePage()->chrome().setWindowRect(frameRect); +} + +WebCore::UserInterfaceLayoutDirection RemoteWebInspectorUI::userInterfaceLayoutDirection() const +{ + return m_page.corePage()->userInterfaceLayoutDirection(); +} + +void RemoteWebInspectorUI::bringToFront() +{ + WebProcess::singleton().parentProcessConnection()->send(Messages::RemoteWebInspectorProxy::BringToFront(), m_page.pageID()); +} + +void RemoteWebInspectorUI::closeWindow() +{ + m_page.corePage()->inspectorController().setInspectorFrontendClient(nullptr); + + WebProcess::singleton().parentProcessConnection()->send(Messages::RemoteWebInspectorProxy::FrontendDidClose(), m_page.pageID()); +} + +void RemoteWebInspectorUI::openInNewTab(const String& url) +{ + WebProcess::singleton().parentProcessConnection()->send(Messages::RemoteWebInspectorProxy::OpenInNewTab(url), m_page.pageID()); +} + +void RemoteWebInspectorUI::save(const String& filename, const String& content, bool base64Encoded, bool forceSaveAs) +{ + WebProcess::singleton().parentProcessConnection()->send(Messages::RemoteWebInspectorProxy::Save(filename, content, base64Encoded, forceSaveAs), m_page.pageID()); +} + +void RemoteWebInspectorUI::append(const String& filename, const String& content) +{ + WebProcess::singleton().parentProcessConnection()->send(Messages::RemoteWebInspectorProxy::Append(filename, content), m_page.pageID()); +} + +void RemoteWebInspectorUI::inspectedURLChanged(const String& urlString) +{ + // Do nothing. The remote side can know if the main resource changed. +} + +} // namespace WebKit |