| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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::unregisterServiceWorker( | 60 void WebServiceWorkerProviderImpl::unregisterServiceWorker( |
| 61 const WebURL& pattern, | 61 const WebURL& pattern, |
| 62 WebServiceWorkerUnregistrationCallbacks* callbacks) { | 62 blink::WebCallbacks<bool, blink::WebServiceWorkerError>* callbacks) { |
| 63 GetDispatcher()->UnregisterServiceWorker( | 63 GetDispatcher()->DeprecatedUnregisterServiceWorker(context_->provider_id(), |
| 64 context_->provider_id(), pattern, callbacks); | 64 pattern, callbacks); |
| 65 } | 65 } |
| 66 | 66 |
| 67 void WebServiceWorkerProviderImpl::getRegistration( | 67 void WebServiceWorkerProviderImpl::getRegistration( |
| 68 const blink::WebURL& document_url, | 68 const blink::WebURL& document_url, |
| 69 WebServiceWorkerRegistrationCallbacks* callbacks) { | 69 WebServiceWorkerRegistrationCallbacks* callbacks) { |
| 70 GetDispatcher()->GetRegistration( | 70 GetDispatcher()->GetRegistration( |
| 71 context_->provider_id(), document_url, callbacks); | 71 context_->provider_id(), document_url, callbacks); |
| 72 } | 72 } |
| 73 | 73 |
| 74 void WebServiceWorkerProviderImpl::getRegistrations( | 74 void WebServiceWorkerProviderImpl::getRegistrations( |
| (...skipping 19 matching lines...) Expand all Loading... |
| 94 if (dispatcher) | 94 if (dispatcher) |
| 95 dispatcher->RemoveProviderClient(context_->provider_id()); | 95 dispatcher->RemoveProviderClient(context_->provider_id()); |
| 96 } | 96 } |
| 97 | 97 |
| 98 ServiceWorkerDispatcher* WebServiceWorkerProviderImpl::GetDispatcher() { | 98 ServiceWorkerDispatcher* WebServiceWorkerProviderImpl::GetDispatcher() { |
| 99 return ServiceWorkerDispatcher::GetOrCreateThreadSpecificInstance( | 99 return ServiceWorkerDispatcher::GetOrCreateThreadSpecificInstance( |
| 100 thread_safe_sender_.get()); | 100 thread_safe_sender_.get()); |
| 101 } | 101 } |
| 102 | 102 |
| 103 } // namespace content | 103 } // namespace content |
| OLD | NEW |