OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "content/browser/service_worker/service_worker_request_context.h" |
| 6 |
| 7 #include "content/public/common/url_constants.h" |
| 8 #include "net/url_request/url_request_job_factory_impl.h" |
| 9 |
| 10 namespace content { |
| 11 |
| 12 namespace { |
| 13 |
| 14 class ServiceWorkerProtocolHandler |
| 15 : public net::URLRequestJobFactory::ProtocolHandler { |
| 16 public: |
| 17 explicit ServiceWorkerProtocolHandler() {} |
| 18 virtual ~ServiceWorkerProtocolHandler() {} |
| 19 |
| 20 virtual net::URLRequestJob* MaybeCreateJob( |
| 21 net::URLRequest* request, |
| 22 net::NetworkDelegate* network_delegate) const OVERRIDE { |
| 23 // TODO(kinuko): Implement this. |
| 24 NOTIMPLEMENTED(); |
| 25 return NULL; |
| 26 } |
| 27 |
| 28 private: |
| 29 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerProtocolHandler); |
| 30 }; |
| 31 |
| 32 class ServiceWorkerRequestJobFactory : public net::URLRequestJobFactoryImpl { |
| 33 public: |
| 34 ServiceWorkerRequestJobFactory() { |
| 35 SetProtocolHandler( |
| 36 kHttpScheme, new ServiceWorkerProtocolHandler); |
| 37 SetProtocolHandler( |
| 38 kHttpsScheme, new ServiceWorkerProtocolHandler); |
| 39 } |
| 40 }; |
| 41 |
| 42 } // namespace |
| 43 |
| 44 |
| 45 ServiceWorkerRequestContext::ServiceWorkerRequestContext( |
| 46 const net::URLRequestContext* original_request_context) { |
| 47 CopyFrom(original_request_context); |
| 48 job_factory_.reset(new ServiceWorkerRequestJobFactory); |
| 49 set_job_factory(job_factory_.get()); |
| 50 } |
| 51 |
| 52 ServiceWorkerRequestContext::~ServiceWorkerRequestContext() { |
| 53 } |
| 54 |
| 55 } // namespace content |
OLD | NEW |