blob: 8aaf020526834203397fbd2e2a24be53bf3dba72 [file] [log] [blame]
/*
* Copyright (C) 2014 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 "web/ServiceWorkerGlobalScopeClientImpl.h"
#include <memory>
#include <utility>
#include "modules/fetch/Response.h"
#include "public/platform/WebURL.h"
#include "public/platform/modules/payments/WebPaymentAppResponse.h"
#include "public/platform/modules/serviceworker/WebServiceWorkerResponse.h"
#include "public/web/modules/serviceworker/WebServiceWorkerContextClient.h"
namespace blink {
ServiceWorkerGlobalScopeClient* ServiceWorkerGlobalScopeClientImpl::create(
WebServiceWorkerContextClient& client) {
return new ServiceWorkerGlobalScopeClientImpl(client);
}
ServiceWorkerGlobalScopeClientImpl::~ServiceWorkerGlobalScopeClientImpl() {}
void ServiceWorkerGlobalScopeClientImpl::getClient(
const WebString& id,
std::unique_ptr<WebServiceWorkerClientCallbacks> callbacks) {
m_client.getClient(id, std::move(callbacks));
}
void ServiceWorkerGlobalScopeClientImpl::getClients(
const WebServiceWorkerClientQueryOptions& options,
std::unique_ptr<WebServiceWorkerClientsCallbacks> callbacks) {
m_client.getClients(options, std::move(callbacks));
}
void ServiceWorkerGlobalScopeClientImpl::openWindow(
const WebURL& url,
std::unique_ptr<WebServiceWorkerClientCallbacks> callbacks) {
m_client.openWindow(url, std::move(callbacks));
}
void ServiceWorkerGlobalScopeClientImpl::setCachedMetadata(const WebURL& url,
const char* data,
size_t size) {
m_client.setCachedMetadata(url, data, size);
}
void ServiceWorkerGlobalScopeClientImpl::clearCachedMetadata(
const WebURL& url) {
m_client.clearCachedMetadata(url);
}
WebURL ServiceWorkerGlobalScopeClientImpl::scope() const {
return m_client.scope();
}
void ServiceWorkerGlobalScopeClientImpl::didHandleActivateEvent(
int eventID,
WebServiceWorkerEventResult result,
double eventDispatchTime) {
m_client.didHandleActivateEvent(eventID, result, eventDispatchTime);
}
void ServiceWorkerGlobalScopeClientImpl::didHandleExtendableMessageEvent(
int eventID,
WebServiceWorkerEventResult result,
double eventDispatchTime) {
m_client.didHandleExtendableMessageEvent(eventID, result, eventDispatchTime);
}
void ServiceWorkerGlobalScopeClientImpl::respondToFetchEvent(
int fetchEventID,
double eventDispatchTime) {
m_client.respondToFetchEvent(fetchEventID, eventDispatchTime);
}
void ServiceWorkerGlobalScopeClientImpl::respondToPaymentRequestEvent(
int eventID,
const WebPaymentAppResponse& response,
double eventDispatchTime) {
m_client.respondToPaymentRequestEvent(eventID, response, eventDispatchTime);
}
void ServiceWorkerGlobalScopeClientImpl::respondToFetchEvent(
int fetchEventID,
const WebServiceWorkerResponse& response,
double eventDispatchTime) {
m_client.respondToFetchEvent(fetchEventID, response, eventDispatchTime);
}
void ServiceWorkerGlobalScopeClientImpl::didHandleFetchEvent(
int fetchEventID,
WebServiceWorkerEventResult result,
double eventDispatchTime) {
m_client.didHandleFetchEvent(fetchEventID, result, eventDispatchTime);
}
void ServiceWorkerGlobalScopeClientImpl::didHandleInstallEvent(
int installEventID,
WebServiceWorkerEventResult result,
double eventDispatchTime) {
m_client.didHandleInstallEvent(installEventID, result, eventDispatchTime);
}
void ServiceWorkerGlobalScopeClientImpl::didHandleNotificationClickEvent(
int eventID,
WebServiceWorkerEventResult result,
double eventDispatchTime) {
m_client.didHandleNotificationClickEvent(eventID, result, eventDispatchTime);
}
void ServiceWorkerGlobalScopeClientImpl::didHandleNotificationCloseEvent(
int eventID,
WebServiceWorkerEventResult result,
double eventDispatchTime) {
m_client.didHandleNotificationCloseEvent(eventID, result, eventDispatchTime);
}
void ServiceWorkerGlobalScopeClientImpl::didHandlePushEvent(
int pushEventID,
WebServiceWorkerEventResult result,
double eventDispatchTime) {
m_client.didHandlePushEvent(pushEventID, result, eventDispatchTime);
}
void ServiceWorkerGlobalScopeClientImpl::didHandleSyncEvent(
int syncEventID,
WebServiceWorkerEventResult result,
double eventDispatchTime) {
m_client.didHandleSyncEvent(syncEventID, result, eventDispatchTime);
}
void ServiceWorkerGlobalScopeClientImpl::didHandlePaymentRequestEvent(
int paymentRequestEventID,
WebServiceWorkerEventResult result,
double eventDispatchTime) {
m_client.didHandlePaymentRequestEvent(paymentRequestEventID, result,
eventDispatchTime);
}
void ServiceWorkerGlobalScopeClientImpl::postMessageToClient(
const WebString& clientUUID,
const WebString& message,
WebMessagePortChannelArray webChannels) {
m_client.postMessageToClient(clientUUID, message, std::move(webChannels));
}
void ServiceWorkerGlobalScopeClientImpl::skipWaiting(
std::unique_ptr<WebServiceWorkerSkipWaitingCallbacks> callbacks) {
m_client.skipWaiting(std::move(callbacks));
}
void ServiceWorkerGlobalScopeClientImpl::claim(
std::unique_ptr<WebServiceWorkerClientsClaimCallbacks> callbacks) {
m_client.claim(std::move(callbacks));
}
void ServiceWorkerGlobalScopeClientImpl::focus(
const WebString& clientUUID,
std::unique_ptr<WebServiceWorkerClientCallbacks> callback) {
m_client.focus(clientUUID, std::move(callback));
}
void ServiceWorkerGlobalScopeClientImpl::navigate(
const WebString& clientUUID,
const WebURL& url,
std::unique_ptr<WebServiceWorkerClientCallbacks> callback) {
m_client.navigate(clientUUID, url, std::move(callback));
}
void ServiceWorkerGlobalScopeClientImpl::registerForeignFetchScopes(
const WebVector<WebURL>& subScopes,
const WebVector<WebSecurityOrigin>& origins) {
m_client.registerForeignFetchScopes(subScopes, origins);
}
ServiceWorkerGlobalScopeClientImpl::ServiceWorkerGlobalScopeClientImpl(
WebServiceWorkerContextClient& client)
: m_client(client) {}
} // namespace blink