| 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/renderer/render_frame_impl.h" | 5 #include "content/renderer/render_frame_impl.h" |
| 6 | 6 |
| 7 #include <map> | 7 #include <map> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 3017 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3028 DCHECK(base::FeatureList::IsEnabled(features::kOffMainThreadFetch)); | 3028 DCHECK(base::FeatureList::IsEnabled(features::kOffMainThreadFetch)); |
| 3029 mojom::WorkerURLLoaderFactoryProviderPtr worker_url_loader_factory_provider; | 3029 mojom::WorkerURLLoaderFactoryProviderPtr worker_url_loader_factory_provider; |
| 3030 RenderThreadImpl::current() | 3030 RenderThreadImpl::current() |
| 3031 ->blink_platform_impl() | 3031 ->blink_platform_impl() |
| 3032 ->GetInterfaceProvider() | 3032 ->GetInterfaceProvider() |
| 3033 ->GetInterface(mojo::MakeRequest(&worker_url_loader_factory_provider)); | 3033 ->GetInterface(mojo::MakeRequest(&worker_url_loader_factory_provider)); |
| 3034 std::unique_ptr<WorkerFetchContextImpl> worker_fetch_context = | 3034 std::unique_ptr<WorkerFetchContextImpl> worker_fetch_context = |
| 3035 base::MakeUnique<WorkerFetchContextImpl>( | 3035 base::MakeUnique<WorkerFetchContextImpl>( |
| 3036 worker_url_loader_factory_provider.PassInterface()); | 3036 worker_url_loader_factory_provider.PassInterface()); |
| 3037 worker_fetch_context->set_parent_frame_id(routing_id_); | 3037 worker_fetch_context->set_parent_frame_id(routing_id_); |
| 3038 worker_fetch_context->set_is_secure_context( |
| 3039 frame_->GetDocument().IsSecureContext()); |
| 3038 blink::WebServiceWorkerNetworkProvider* web_provider = | 3040 blink::WebServiceWorkerNetworkProvider* web_provider = |
| 3039 frame_->DataSource()->GetServiceWorkerNetworkProvider(); | 3041 frame_->DataSource()->GetServiceWorkerNetworkProvider(); |
| 3040 if (web_provider) { | 3042 if (web_provider) { |
| 3041 ServiceWorkerNetworkProvider* provider = | 3043 ServiceWorkerNetworkProvider* provider = |
| 3042 ServiceWorkerNetworkProvider::FromWebServiceWorkerNetworkProvider( | 3044 ServiceWorkerNetworkProvider::FromWebServiceWorkerNetworkProvider( |
| 3043 web_provider); | 3045 web_provider); |
| 3044 worker_fetch_context->set_service_worker_provider_id( | 3046 worker_fetch_context->set_service_worker_provider_id( |
| 3045 provider->provider_id()); | 3047 provider->provider_id()); |
| 3046 worker_fetch_context->set_is_controlled_by_service_worker( | 3048 worker_fetch_context->set_is_controlled_by_service_worker( |
| 3047 provider->IsControlledByServiceWorker()); | 3049 provider->IsControlledByServiceWorker()); |
| (...skipping 4008 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7056 policy(info.default_policy), | 7058 policy(info.default_policy), |
| 7057 replaces_current_history_item(info.replaces_current_history_item), | 7059 replaces_current_history_item(info.replaces_current_history_item), |
| 7058 history_navigation_in_new_child_frame( | 7060 history_navigation_in_new_child_frame( |
| 7059 info.is_history_navigation_in_new_child_frame), | 7061 info.is_history_navigation_in_new_child_frame), |
| 7060 client_redirect(info.is_client_redirect), | 7062 client_redirect(info.is_client_redirect), |
| 7061 cache_disabled(info.is_cache_disabled), | 7063 cache_disabled(info.is_cache_disabled), |
| 7062 form(info.form), | 7064 form(info.form), |
| 7063 source_location(info.source_location) {} | 7065 source_location(info.source_location) {} |
| 7064 | 7066 |
| 7065 } // namespace content | 7067 } // namespace content |
| OLD | NEW |