| 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/request_extra_data.h" | 9 #include "content/child/request_extra_data.h" |
| 10 #include "content/child/service_worker/service_worker_dispatcher.h" | 10 #include "content/child/service_worker/service_worker_dispatcher.h" |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 is_parent_frame_secure) {} | 209 is_parent_frame_secure) {} |
| 210 | 210 |
| 211 ServiceWorkerNetworkProvider::ServiceWorkerNetworkProvider( | 211 ServiceWorkerNetworkProvider::ServiceWorkerNetworkProvider( |
| 212 mojom::ServiceWorkerProviderInfoForStartWorkerPtr info) | 212 mojom::ServiceWorkerProviderInfoForStartWorkerPtr info) |
| 213 : provider_id_(info->provider_id) { | 213 : provider_id_(info->provider_id) { |
| 214 context_ = new ServiceWorkerProviderContext( | 214 context_ = new ServiceWorkerProviderContext( |
| 215 provider_id_, SERVICE_WORKER_PROVIDER_FOR_CONTROLLER, | 215 provider_id_, SERVICE_WORKER_PROVIDER_FOR_CONTROLLER, |
| 216 std::move(info->client_request), | 216 std::move(info->client_request), |
| 217 ChildThreadImpl::current()->thread_safe_sender()); | 217 ChildThreadImpl::current()->thread_safe_sender()); |
| 218 | 218 |
| 219 if (info->script_loader_factory_ptr_info.is_valid()) | |
| 220 script_loader_factory_.Bind( | |
| 221 std::move(info->script_loader_factory_ptr_info)); | |
| 222 | |
| 223 ServiceWorkerDispatcher* dispatcher = | 219 ServiceWorkerDispatcher* dispatcher = |
| 224 ServiceWorkerDispatcher::GetOrCreateThreadSpecificInstance( | 220 ServiceWorkerDispatcher::GetOrCreateThreadSpecificInstance( |
| 225 ChildThreadImpl::current()->thread_safe_sender(), | 221 ChildThreadImpl::current()->thread_safe_sender(), |
| 226 base::ThreadTaskRunnerHandle::Get().get()); | 222 base::ThreadTaskRunnerHandle::Get().get()); |
| 227 // TODO(shimazu): Set registration/attributes directly to |context_|. | 223 // TODO(shimazu): Set registration/attributes directly to |context_|. |
| 228 dispatcher->OnAssociateRegistration(-1 /* unused thread_id */, | 224 dispatcher->OnAssociateRegistration(-1 /* unused thread_id */, |
| 229 info->provider_id, info->registration, | 225 info->provider_id, info->registration, |
| 230 info->attributes); | 226 info->attributes); |
| 231 provider_host_.Bind(std::move(info->host_ptr_info)); | 227 provider_host_.Bind(std::move(info->host_ptr_info)); |
| 232 } | 228 } |
| (...skipping 12 matching lines...) Expand all Loading... |
| 245 bool ServiceWorkerNetworkProvider::IsControlledByServiceWorker() const { | 241 bool ServiceWorkerNetworkProvider::IsControlledByServiceWorker() const { |
| 246 if (ServiceWorkerUtils::IsServicificationEnabled()) { | 242 if (ServiceWorkerUtils::IsServicificationEnabled()) { |
| 247 // Interception for subresource loading is not working (yet) | 243 // Interception for subresource loading is not working (yet) |
| 248 // when servicification is enabled. | 244 // when servicification is enabled. |
| 249 return false; | 245 return false; |
| 250 } | 246 } |
| 251 return context() && context()->controller(); | 247 return context() && context()->controller(); |
| 252 } | 248 } |
| 253 | 249 |
| 254 } // namespace content | 250 } // namespace content |
| OLD | NEW |