2 * Copyright (C) 2014 Google Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 #include "web/ServiceWorkerGlobalScopeClientImpl.h"
34 #include "modules/fetch/Response.h"
35 #include "public/platform/WebServiceWorkerResponse.h"
36 #include "public/platform/WebURL.h"
37 #include "public/web/WebServiceWorkerContextClient.h"
38 #include "wtf/PassOwnPtr.h"
42 PassOwnPtrWillBeRawPtr
<ServiceWorkerGlobalScopeClient
> ServiceWorkerGlobalScopeClientImpl::create(WebServiceWorkerContextClient
& client
)
44 return adoptPtrWillBeNoop(new ServiceWorkerGlobalScopeClientImpl(client
));
47 ServiceWorkerGlobalScopeClientImpl::~ServiceWorkerGlobalScopeClientImpl()
51 void ServiceWorkerGlobalScopeClientImpl::getClients(const WebServiceWorkerClientQueryOptions
& options
, WebServiceWorkerClientsCallbacks
* callbacks
)
53 m_client
.getClients(options
, callbacks
);
56 void ServiceWorkerGlobalScopeClientImpl::openWindow(const WebURL
& url
, WebServiceWorkerClientCallbacks
* callbacks
)
58 m_client
.openWindow(url
, callbacks
);
61 void ServiceWorkerGlobalScopeClientImpl::setCachedMetadata(const WebURL
& url
, const char* data
, size_t size
)
63 m_client
.setCachedMetadata(url
, data
, size
);
66 void ServiceWorkerGlobalScopeClientImpl::clearCachedMetadata(const WebURL
& url
)
68 m_client
.clearCachedMetadata(url
);
71 WebURL
ServiceWorkerGlobalScopeClientImpl::scope() const
73 return m_client
.scope();
76 void ServiceWorkerGlobalScopeClientImpl::didHandleActivateEvent(int eventID
, WebServiceWorkerEventResult result
)
78 m_client
.didHandleActivateEvent(eventID
, result
);
81 void ServiceWorkerGlobalScopeClientImpl::didHandleFetchEvent(int fetchEventID
)
83 m_client
.didHandleFetchEvent(fetchEventID
);
86 void ServiceWorkerGlobalScopeClientImpl::didHandleFetchEvent(int fetchEventID
, const WebServiceWorkerResponse
& webResponse
)
88 m_client
.didHandleFetchEvent(fetchEventID
, webResponse
);
91 void ServiceWorkerGlobalScopeClientImpl::didHandleInstallEvent(int installEventID
, WebServiceWorkerEventResult result
)
93 m_client
.didHandleInstallEvent(installEventID
, result
);
96 void ServiceWorkerGlobalScopeClientImpl::didHandleNotificationClickEvent(int eventID
, WebServiceWorkerEventResult result
)
98 m_client
.didHandleNotificationClickEvent(eventID
, result
);
101 void ServiceWorkerGlobalScopeClientImpl::didHandlePushEvent(int pushEventID
, WebServiceWorkerEventResult result
)
103 m_client
.didHandlePushEvent(pushEventID
, result
);
106 void ServiceWorkerGlobalScopeClientImpl::didHandleSyncEvent(int syncEventID
, WebServiceWorkerEventResult result
)
108 m_client
.didHandleSyncEvent(syncEventID
, result
);
111 void ServiceWorkerGlobalScopeClientImpl::postMessageToClient(const WebString
& clientUUID
, const WebString
& message
, PassOwnPtr
<WebMessagePortChannelArray
> webChannels
)
113 m_client
.postMessageToClient(clientUUID
, message
, webChannels
.leakPtr());
116 void ServiceWorkerGlobalScopeClientImpl::postMessageToCrossOriginClient(const WebCrossOriginServiceWorkerClient
& client
, const WebString
& message
, PassOwnPtr
<WebMessagePortChannelArray
> webChannels
)
118 m_client
.postMessageToCrossOriginClient(client
, message
, webChannels
.leakPtr());
121 void ServiceWorkerGlobalScopeClientImpl::skipWaiting(WebServiceWorkerSkipWaitingCallbacks
* callbacks
)
123 m_client
.skipWaiting(callbacks
);
126 void ServiceWorkerGlobalScopeClientImpl::claim(WebServiceWorkerClientsClaimCallbacks
* callbacks
)
128 m_client
.claim(callbacks
);
131 void ServiceWorkerGlobalScopeClientImpl::focus(const WebString
& clientUUID
, WebServiceWorkerClientCallbacks
* callback
)
133 m_client
.focus(clientUUID
, callback
);
136 void ServiceWorkerGlobalScopeClientImpl::navigate(const WebString
& clientUUID
, const WebURL
& url
, WebServiceWorkerClientCallbacks
* callback
)
138 m_client
.navigate(clientUUID
, url
, callback
);
141 ServiceWorkerGlobalScopeClientImpl::ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient
& client
)