| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 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. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "web/WorkerContentSettingsClient.h" | 31 #include "web/WorkerContentSettingsClient.h" |
| 32 | 32 |
| 33 #include "core/workers/WorkerGlobalScope.h" | 33 #include "core/workers/WorkerGlobalScope.h" |
| 34 #include "public/platform/WebString.h" | 34 #include "public/platform/WebString.h" |
| 35 #include "public/web/WebWorkerContentSettingsClientProxy.h" | 35 #include "public/web/WebWorkerContentSettingsClientProxy.h" |
| 36 #include "web/IndexedDBClientImpl.h" |
| 36 #include "wtf/PassOwnPtr.h" | 37 #include "wtf/PassOwnPtr.h" |
| 37 | 38 |
| 38 namespace blink { | 39 namespace blink { |
| 39 | 40 |
| 40 PassOwnPtrWillBeRawPtr<WorkerContentSettingsClient> WorkerContentSettingsClient:
:create(PassOwnPtr<WebWorkerContentSettingsClientProxy> proxy) | 41 PassOwnPtrWillBeRawPtr<WorkerContentSettingsClient> WorkerContentSettingsClient:
:create(PassOwnPtr<WebWorkerContentSettingsClientProxy> proxy) |
| 41 { | 42 { |
| 42 return adoptPtrWillBeNoop(new WorkerContentSettingsClient(proxy)); | 43 return adoptPtrWillBeNoop(new WorkerContentSettingsClient(proxy)); |
| 43 } | 44 } |
| 44 | 45 |
| 45 WorkerContentSettingsClient::~WorkerContentSettingsClient() | 46 WorkerContentSettingsClient::~WorkerContentSettingsClient() |
| (...skipping 22 matching lines...) Expand all Loading... |
| 68 WorkerContentSettingsClient* WorkerContentSettingsClient::from(ExecutionContext&
context) | 69 WorkerContentSettingsClient* WorkerContentSettingsClient::from(ExecutionContext&
context) |
| 69 { | 70 { |
| 70 WorkerClients* clients = toWorkerGlobalScope(context).clients(); | 71 WorkerClients* clients = toWorkerGlobalScope(context).clients(); |
| 71 ASSERT(clients); | 72 ASSERT(clients); |
| 72 return static_cast<WorkerContentSettingsClient*>(WillBeHeapSupplement<Worker
Clients>::from(*clients, supplementName())); | 73 return static_cast<WorkerContentSettingsClient*>(WillBeHeapSupplement<Worker
Clients>::from(*clients, supplementName())); |
| 73 } | 74 } |
| 74 | 75 |
| 75 WorkerContentSettingsClient::WorkerContentSettingsClient(PassOwnPtr<WebWorkerCon
tentSettingsClientProxy> proxy) | 76 WorkerContentSettingsClient::WorkerContentSettingsClient(PassOwnPtr<WebWorkerCon
tentSettingsClientProxy> proxy) |
| 76 : m_proxy(proxy) | 77 : m_proxy(proxy) |
| 77 { | 78 { |
| 79 setIndexedDBClientCreateFunction(IndexedDBClientImpl::create); |
| 78 } | 80 } |
| 79 | 81 |
| 80 void provideContentSettingsClientToWorker(WorkerClients* clients, PassOwnPtr<Web
WorkerContentSettingsClientProxy> proxy) | 82 void provideContentSettingsClientToWorker(WorkerClients* clients, PassOwnPtr<Web
WorkerContentSettingsClientProxy> proxy) |
| 81 { | 83 { |
| 82 ASSERT(clients); | 84 ASSERT(clients); |
| 83 WorkerContentSettingsClient::provideTo(*clients, WorkerContentSettingsClient
::supplementName(), WorkerContentSettingsClient::create(proxy)); | 85 WorkerContentSettingsClient::provideTo(*clients, WorkerContentSettingsClient
::supplementName(), WorkerContentSettingsClient::create(proxy)); |
| 84 } | 86 } |
| 85 | 87 |
| 86 } // namespace blink | 88 } // namespace blink |
| OLD | NEW |