summaryrefslogtreecommitdiff
path: root/Source/WebKit/chromium/src/WebWorkerClientImpl.cpp
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@digia.com>2013-09-13 12:51:20 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-19 20:50:05 +0200
commitd441d6f39bb846989d95bcf5caf387b42414718d (patch)
treee367e64a75991c554930278175d403c072de6bb8 /Source/WebKit/chromium/src/WebWorkerClientImpl.cpp
parent0060b2994c07842f4c59de64b5e3e430525c4b90 (diff)
downloadqtwebkit-d441d6f39bb846989d95bcf5caf387b42414718d.tar.gz
Import Qt5x2 branch of QtWebkit for Qt 5.2
Importing a new snapshot of webkit. Change-Id: I2d01ad12cdc8af8cb015387641120a9d7ea5f10c Reviewed-by: Allan Sandfeld Jensen <allan.jensen@digia.com>
Diffstat (limited to 'Source/WebKit/chromium/src/WebWorkerClientImpl.cpp')
-rw-r--r--Source/WebKit/chromium/src/WebWorkerClientImpl.cpp260
1 files changed, 0 insertions, 260 deletions
diff --git a/Source/WebKit/chromium/src/WebWorkerClientImpl.cpp b/Source/WebKit/chromium/src/WebWorkerClientImpl.cpp
deleted file mode 100644
index 2c0fb9ac8..000000000
--- a/Source/WebKit/chromium/src/WebWorkerClientImpl.cpp
+++ /dev/null
@@ -1,260 +0,0 @@
-/*
- * Copyright (C) 2009 Google 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:
- *
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * 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.
- * * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 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 THE COPYRIGHT
- * OWNER OR 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 "WebWorkerClientImpl.h"
-
-#if ENABLE(WORKERS)
-
-#include "CrossThreadTask.h"
-#include "DedicatedWorkerThread.h"
-#include "Document.h"
-#include "ErrorEvent.h"
-#include "Frame.h"
-#include "FrameLoaderClient.h"
-#include "GroupSettings.h"
-#include "InspectorInstrumentation.h"
-#include "MessageEvent.h"
-#include "MessagePort.h"
-#include "MessagePortChannel.h"
-#include "Page.h"
-#include "PageGroup.h"
-#include "ScriptCallStack.h"
-#include "ScriptExecutionContext.h"
-#include "Worker.h"
-#include "WorkerContext.h"
-#include "WorkerScriptController.h"
-#include "WorkerMessagingProxy.h"
-#include <wtf/Threading.h>
-
-#include "FrameLoaderClientImpl.h"
-#include "PlatformMessagePortChannel.h"
-#include "WebFileSystemCallbacks.h"
-#include "WebFrameClient.h"
-#include "WebFrameImpl.h"
-#include "WebMessagePortChannel.h"
-#include "WebPermissionClient.h"
-#include "WebViewImpl.h"
-#include <public/WebString.h>
-#include <public/WebURL.h>
-
-using namespace WebCore;
-
-namespace WebKit {
-
-// Chromium-specific wrapper over WorkerMessagingProxy.
-// Delegates implementation of Worker{Loader,Context,Object}Proxy to WorkerMessagingProxy.
-
-// static
-WorkerContextProxy* WebWorkerClientImpl::createWorkerContextProxy(Worker* worker)
-{
- if (worker->scriptExecutionContext()->isDocument()) {
- Document* document = static_cast<Document*>(worker->scriptExecutionContext());
- WebFrameImpl* webFrame = WebFrameImpl::fromFrame(document->frame());
- WebWorkerClientImpl* proxy = new WebWorkerClientImpl(worker, webFrame);
- return proxy;
- }
- ASSERT_NOT_REACHED();
- return 0;
-}
-
-void WebWorkerClientImpl::startWorkerContext(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerThreadStartMode startMode)
-{
- ASSERT(m_scriptExecutionContext->isDocument());
- Document* document = static_cast<Document*>(m_scriptExecutionContext.get());
- GroupSettings* settings = 0;
- if (document->page())
- settings = document->page()->group().groupSettings();
- RefPtr<DedicatedWorkerThread> thread = DedicatedWorkerThread::create(scriptURL, userAgent, settings, sourceCode, *this, *this, startMode,
- document->contentSecurityPolicy()->deprecatedHeader(),
- document->contentSecurityPolicy()->deprecatedHeaderType(),
- document->topDocument()->securityOrigin());
- m_proxy->workerThreadCreated(thread);
- thread->start();
- InspectorInstrumentation::didStartWorkerContext(m_scriptExecutionContext.get(), m_proxy, scriptURL);
-}
-
-void WebWorkerClientImpl::terminateWorkerContext()
-{
- m_webFrame = 0;
- m_proxy->terminateWorkerContext();
-}
-
-void WebWorkerClientImpl::postMessageToWorkerContext(
- PassRefPtr<SerializedScriptValue> value,
- PassOwnPtr<MessagePortChannelArray> ports)
-{
- m_proxy->postMessageToWorkerContext(value, ports);
-}
-
-bool WebWorkerClientImpl::hasPendingActivity() const
-{
- return m_proxy->hasPendingActivity();
-}
-
-void WebWorkerClientImpl::workerObjectDestroyed()
-{
- m_proxy->workerObjectDestroyed();
-}
-
-#if ENABLE(INSPECTOR)
-void WebWorkerClientImpl::connectToInspector(PageInspector* inspector)
-{
- m_proxy->connectToInspector(inspector);
-}
-
-void WebWorkerClientImpl::disconnectFromInspector()
-{
- m_proxy->disconnectFromInspector();
-}
-
-void WebWorkerClientImpl::sendMessageToInspector(const String& message)
-{
- m_proxy->sendMessageToInspector(message);
-}
-
-void WebWorkerClientImpl::postMessageToPageInspector(const String& message)
-{
- m_proxy->postMessageToPageInspector(message);
-}
-
-void WebWorkerClientImpl::updateInspectorStateCookie(const String& cookie)
-{
- m_proxy->updateInspectorStateCookie(cookie);
-}
-#endif // ENABLE(INSPECTOR)
-
-
-void WebWorkerClientImpl::postTaskToLoader(PassOwnPtr<ScriptExecutionContext::Task> task)
-{
- m_proxy->postTaskToLoader(task);
-}
-
-bool WebWorkerClientImpl::postTaskForModeToWorkerContext(PassOwnPtr<ScriptExecutionContext::Task> task, const String& mode)
-{
- return m_proxy->postTaskForModeToWorkerContext(task, mode);
-}
-
-void WebWorkerClientImpl::postMessageToWorkerObject(PassRefPtr<SerializedScriptValue> value, PassOwnPtr<MessagePortChannelArray> ports)
-{
- m_proxy->postMessageToWorkerObject(value, ports);
-}
-
-void WebWorkerClientImpl::confirmMessageFromWorkerObject(bool hasPendingActivity)
-{
- m_proxy->confirmMessageFromWorkerObject(hasPendingActivity);
-}
-
-void WebWorkerClientImpl::reportPendingActivity(bool hasPendingActivity)
-{
- m_proxy->reportPendingActivity(hasPendingActivity);
-}
-
-void WebWorkerClientImpl::workerContextClosed()
-{
- m_proxy->workerContextClosed();
-}
-
-void WebWorkerClientImpl::postExceptionToWorkerObject(const String& errorMessage, int lineNumber, const String& sourceURL)
-{
- m_proxy->postExceptionToWorkerObject(errorMessage, lineNumber, sourceURL);
-}
-
-void WebWorkerClientImpl::postConsoleMessageToWorkerObject(MessageSource source, MessageType type, MessageLevel level, const String& message, int lineNumber, const String& sourceURL)
-{
- m_proxy->postConsoleMessageToWorkerObject(source, type, level, message, lineNumber, sourceURL);
-}
-
-void WebWorkerClientImpl::workerContextDestroyed()
-{
- m_proxy->workerContextDestroyed();
-}
-
-bool WebWorkerClientImpl::allowFileSystem()
-{
- if (m_proxy->askedToTerminate())
- return false;
- WebKit::WebViewImpl* webView = m_webFrame->viewImpl();
- if (!webView)
- return false;
- return !webView->permissionClient() || webView->permissionClient()->allowFileSystem(m_webFrame);
-}
-
-void WebWorkerClientImpl::openFileSystem(WebFileSystem::Type type, long long size, bool create,
- WebFileSystemCallbacks* callbacks)
-{
- if (m_proxy->askedToTerminate()) {
- callbacks->didFail(WebFileErrorAbort);
- return;
- }
- m_webFrame->client()->openFileSystem(m_webFrame, type, size, create, callbacks);
-}
-
-bool WebWorkerClientImpl::allowDatabase(WebFrame*, const WebString& name, const WebString& displayName, unsigned long estimatedSize)
-{
- if (m_proxy->askedToTerminate())
- return false;
- WebKit::WebViewImpl* webView = m_webFrame->viewImpl();
- if (!webView)
- return false;
- return !webView->permissionClient() || webView->permissionClient()->allowDatabase(m_webFrame, name, displayName, estimatedSize);
-}
-
-bool WebWorkerClientImpl::allowIndexedDB(const WebString& name)
-{
- if (m_proxy->askedToTerminate())
- return false;
- WebKit::WebViewImpl* webView = m_webFrame->viewImpl();
- if (!webView)
- return false;
- return !webView->permissionClient() || webView->permissionClient()->allowIndexedDB(m_webFrame, name, WebSecurityOrigin());
-}
-
-WebView* WebWorkerClientImpl::view() const
-{
- if (m_proxy->askedToTerminate())
- return 0;
- return m_webFrame->view();
-}
-
-WebWorkerClientImpl::WebWorkerClientImpl(Worker* worker, WebFrameImpl* webFrame)
- : m_proxy(new WorkerMessagingProxy(worker))
- , m_scriptExecutionContext(worker->scriptExecutionContext())
- , m_webFrame(webFrame)
-{
-}
-
-WebWorkerClientImpl::~WebWorkerClientImpl()
-{
-}
-
-} // namespace WebKit
-
-#endif