c6ccfff3fde820f59a7f39c75cb9cef91ac80f51
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / modules / serviceworkers / ServiceWorkerGlobalScope.cpp
1 /*
2  * Copyright (C) 2013 Google Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
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
13  * distribution.
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.
17  *
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.
29  */
30 #include "config.h"
31 #include "ServiceWorkerGlobalScope.h"
32
33 #include "bindings/v8/ScriptObject.h"
34 #include "core/workers/WorkerClients.h"
35 #include "core/workers/WorkerThreadStartupData.h"
36 #include "modules/serviceworkers/ServiceWorkerClients.h"
37 #include "modules/serviceworkers/ServiceWorkerGlobalScopeClient.h"
38 #include "modules/serviceworkers/ServiceWorkerThread.h"
39 #include "platform/weborigin/KURL.h"
40 #include "public/platform/WebURL.h"
41 #include "wtf/CurrentTime.h"
42
43 namespace WebCore {
44
45 PassRefPtrWillBeRawPtr<ServiceWorkerGlobalScope> ServiceWorkerGlobalScope::create(ServiceWorkerThread* thread, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData> startupData)
46 {
47     RefPtrWillBeRawPtr<ServiceWorkerGlobalScope> context = adoptRefWillBeRefCountedGarbageCollected(new ServiceWorkerGlobalScope(startupData->m_scriptURL, startupData->m_userAgent, thread, monotonicallyIncreasingTime(), startupData->m_workerClients.release()));
48
49     context->applyContentSecurityPolicyFromString(startupData->m_contentSecurityPolicy, startupData->m_contentSecurityPolicyType);
50     return context.release();
51 }
52
53 ServiceWorkerGlobalScope::ServiceWorkerGlobalScope(const KURL& url, const String& userAgent, ServiceWorkerThread* thread, double timeOrigin, PassOwnPtrWillBeRawPtr<WorkerClients> workerClients)
54     : WorkerGlobalScope(url, userAgent, thread, timeOrigin, workerClients)
55 {
56     ScriptWrappable::init(this);
57 }
58
59 ServiceWorkerGlobalScope::~ServiceWorkerGlobalScope()
60 {
61 }
62
63 String ServiceWorkerGlobalScope::scope(ExecutionContext* context)
64 {
65     return ServiceWorkerGlobalScopeClient::from(context)->scope().string();
66 }
67
68 PassRefPtr<ServiceWorkerClients> ServiceWorkerGlobalScope::clients()
69 {
70     if (!m_clients)
71         m_clients = ServiceWorkerClients::create();
72     return m_clients;
73 }
74
75 const AtomicString& ServiceWorkerGlobalScope::interfaceName() const
76 {
77     return EventTargetNames::ServiceWorkerGlobalScope;
78 }
79
80 void ServiceWorkerGlobalScope::trace(Visitor* visitor)
81 {
82     WorkerGlobalScope::trace(visitor);
83 }
84
85 } // namespace WebCore