| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/service_worker_network_provider.h" | 5 #include "content/child/service_worker/service_worker_network_provider.h" |
| 6 | 6 |
| 7 #include "base/atomic_sequence_num.h" | 7 #include "base/atomic_sequence_num.h" |
| 8 #include "content/child/child_thread_impl.h" | 8 #include "content/child/child_thread_impl.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/common/service_worker/service_worker_messages.h" | 10 #include "content/common/service_worker/service_worker_messages.h" |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 return static_cast<ServiceWorkerNetworkProvider*>( | 43 return static_cast<ServiceWorkerNetworkProvider*>( |
| 44 datasource_userdata->GetUserData(&kUserDataKey)); | 44 datasource_userdata->GetUserData(&kUserDataKey)); |
| 45 } | 45 } |
| 46 | 46 |
| 47 ServiceWorkerNetworkProvider::ServiceWorkerNetworkProvider( | 47 ServiceWorkerNetworkProvider::ServiceWorkerNetworkProvider( |
| 48 int route_id, | 48 int route_id, |
| 49 ServiceWorkerProviderType provider_type) | 49 ServiceWorkerProviderType provider_type) |
| 50 : provider_id_(GenerateProviderIdForType(provider_type)) { | 50 : provider_id_(GenerateProviderIdForType(provider_type)) { |
| 51 if (provider_id_ == kInvalidServiceWorkerProviderId) | 51 if (provider_id_ == kInvalidServiceWorkerProviderId) |
| 52 return; | 52 return; |
| 53 context_ = new ServiceWorkerProviderContext(provider_id_); | 53 context_ = new ServiceWorkerProviderContext(provider_id_, provider_type); |
| 54 if (!ChildThreadImpl::current()) | 54 if (!ChildThreadImpl::current()) |
| 55 return; // May be null in some tests. | 55 return; // May be null in some tests. |
| 56 ChildThreadImpl::current()->Send(new ServiceWorkerHostMsg_ProviderCreated( | 56 ChildThreadImpl::current()->Send(new ServiceWorkerHostMsg_ProviderCreated( |
| 57 provider_id_, route_id, provider_type)); | 57 provider_id_, route_id, provider_type)); |
| 58 } | 58 } |
| 59 | 59 |
| 60 ServiceWorkerNetworkProvider::~ServiceWorkerNetworkProvider() { | 60 ServiceWorkerNetworkProvider::~ServiceWorkerNetworkProvider() { |
| 61 if (provider_id_ == kInvalidServiceWorkerProviderId) | 61 if (provider_id_ == kInvalidServiceWorkerProviderId) |
| 62 return; | 62 return; |
| 63 if (!ChildThreadImpl::current()) | 63 if (!ChildThreadImpl::current()) |
| 64 return; // May be null in some tests. | 64 return; // May be null in some tests. |
| 65 ChildThreadImpl::current()->Send( | 65 ChildThreadImpl::current()->Send( |
| 66 new ServiceWorkerHostMsg_ProviderDestroyed(provider_id_)); | 66 new ServiceWorkerHostMsg_ProviderDestroyed(provider_id_)); |
| 67 } | 67 } |
| 68 | 68 |
| 69 void ServiceWorkerNetworkProvider::SetServiceWorkerVersionId( | 69 void ServiceWorkerNetworkProvider::SetServiceWorkerVersionId( |
| 70 int64 version_id) { | 70 int64 version_id) { |
| 71 DCHECK_NE(kInvalidServiceWorkerProviderId, provider_id_); | 71 DCHECK_NE(kInvalidServiceWorkerProviderId, provider_id_); |
| 72 if (!ChildThreadImpl::current()) | 72 if (!ChildThreadImpl::current()) |
| 73 return; // May be null in some tests. | 73 return; // May be null in some tests. |
| 74 ChildThreadImpl::current()->Send( | 74 ChildThreadImpl::current()->Send( |
| 75 new ServiceWorkerHostMsg_SetVersionId(provider_id_, version_id)); | 75 new ServiceWorkerHostMsg_SetVersionId(provider_id_, version_id)); |
| 76 } | 76 } |
| 77 | 77 |
| 78 bool ServiceWorkerNetworkProvider::IsControlledByServiceWorker() const { | 78 bool ServiceWorkerNetworkProvider::IsControlledByServiceWorker() const { |
| 79 return context() && context()->controller(); | 79 return context() && context()->controller(); |
| 80 } | 80 } |
| 81 | 81 |
| 82 } // namespace content | 82 } // namespace content |
| OLD | NEW |