| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/child/service_worker/web_service_worker_provider_impl.h" | 5 #include "content/child/service_worker/web_service_worker_provider_impl.h" |
| 6 | 6 |
| 7 #include "content/child/service_worker/service_worker_dispatcher.h" | 7 #include "content/child/service_worker/service_worker_dispatcher.h" |
| 8 #include "content/child/service_worker/service_worker_handle_reference.h" | 8 #include "content/child/service_worker/service_worker_handle_reference.h" |
| 9 #include "content/child/service_worker/service_worker_provider_context.h" | 9 #include "content/child/service_worker/service_worker_provider_context.h" |
| 10 #include "content/child/service_worker/web_service_worker_impl.h" | 10 #include "content/child/service_worker/web_service_worker_impl.h" |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 } | 50 } |
| 51 | 51 |
| 52 void WebServiceWorkerProviderImpl::registerServiceWorker( | 52 void WebServiceWorkerProviderImpl::registerServiceWorker( |
| 53 const WebURL& pattern, | 53 const WebURL& pattern, |
| 54 const WebURL& script_url, | 54 const WebURL& script_url, |
| 55 WebServiceWorkerRegistrationCallbacks* callbacks) { | 55 WebServiceWorkerRegistrationCallbacks* callbacks) { |
| 56 GetDispatcher()->RegisterServiceWorker( | 56 GetDispatcher()->RegisterServiceWorker( |
| 57 context_->provider_id(), pattern, script_url, callbacks); | 57 context_->provider_id(), pattern, script_url, callbacks); |
| 58 } | 58 } |
| 59 | 59 |
| 60 void WebServiceWorkerProviderImpl::updateServiceWorker(const WebURL& pattern) { |
| 61 GetDispatcher()->UpdateServiceWorker(context_->provider_id(), pattern); |
| 62 } |
| 63 |
| 60 void WebServiceWorkerProviderImpl::unregisterServiceWorker( | 64 void WebServiceWorkerProviderImpl::unregisterServiceWorker( |
| 61 const WebURL& pattern, | 65 const WebURL& pattern, |
| 62 WebServiceWorkerUnregistrationCallbacks* callbacks) { | 66 WebServiceWorkerUnregistrationCallbacks* callbacks) { |
| 63 GetDispatcher()->UnregisterServiceWorker( | 67 GetDispatcher()->UnregisterServiceWorker( |
| 64 context_->provider_id(), pattern, callbacks); | 68 context_->provider_id(), pattern, callbacks); |
| 65 } | 69 } |
| 66 | 70 |
| 67 void WebServiceWorkerProviderImpl::getRegistration( | 71 void WebServiceWorkerProviderImpl::getRegistration( |
| 68 const blink::WebURL& document_url, | 72 const blink::WebURL& document_url, |
| 69 WebServiceWorkerRegistrationCallbacks* callbacks) { | 73 WebServiceWorkerRegistrationCallbacks* callbacks) { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 84 if (dispatcher) | 88 if (dispatcher) |
| 85 dispatcher->RemoveProviderClient(context_->provider_id()); | 89 dispatcher->RemoveProviderClient(context_->provider_id()); |
| 86 } | 90 } |
| 87 | 91 |
| 88 ServiceWorkerDispatcher* WebServiceWorkerProviderImpl::GetDispatcher() { | 92 ServiceWorkerDispatcher* WebServiceWorkerProviderImpl::GetDispatcher() { |
| 89 return ServiceWorkerDispatcher::GetOrCreateThreadSpecificInstance( | 93 return ServiceWorkerDispatcher::GetOrCreateThreadSpecificInstance( |
| 90 thread_safe_sender_.get()); | 94 thread_safe_sender_.get()); |
| 91 } | 95 } |
| 92 | 96 |
| 93 } // namespace content | 97 } // namespace content |
| OLD | NEW |