Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1099)

Side by Side Diff: content/browser/service_worker/service_worker_request_context.cc

Issue 177733003: ServiceWorker request intercept plan 1: Create per-request URLRequestContext (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: minimize Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW
« no previous file with comments | « content/browser/service_worker/service_worker_request_context.h ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698