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

Unified 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, 10 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/service_worker/service_worker_request_context.cc
diff --git a/content/browser/service_worker/service_worker_request_context.cc b/content/browser/service_worker/service_worker_request_context.cc
new file mode 100644
index 0000000000000000000000000000000000000000..3a300cb27afff01b65365b3ab01869a630a94b05
--- /dev/null
+++ b/content/browser/service_worker/service_worker_request_context.cc
@@ -0,0 +1,55 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/browser/service_worker/service_worker_request_context.h"
+
+#include "content/public/common/url_constants.h"
+#include "net/url_request/url_request_job_factory_impl.h"
+
+namespace content {
+
+namespace {
+
+class ServiceWorkerProtocolHandler
+ : public net::URLRequestJobFactory::ProtocolHandler {
+ public:
+ explicit ServiceWorkerProtocolHandler() {}
+ virtual ~ServiceWorkerProtocolHandler() {}
+
+ virtual net::URLRequestJob* MaybeCreateJob(
+ net::URLRequest* request,
+ net::NetworkDelegate* network_delegate) const OVERRIDE {
+ // TODO(kinuko): Implement this.
+ NOTIMPLEMENTED();
+ return NULL;
+ }
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(ServiceWorkerProtocolHandler);
+};
+
+class ServiceWorkerRequestJobFactory : public net::URLRequestJobFactoryImpl {
+ public:
+ ServiceWorkerRequestJobFactory() {
+ SetProtocolHandler(
+ kHttpScheme, new ServiceWorkerProtocolHandler);
+ SetProtocolHandler(
+ kHttpsScheme, new ServiceWorkerProtocolHandler);
+ }
+};
+
+} // namespace
+
+
+ServiceWorkerRequestContext::ServiceWorkerRequestContext(
+ const net::URLRequestContext* original_request_context) {
+ CopyFrom(original_request_context);
+ job_factory_.reset(new ServiceWorkerRequestJobFactory);
+ set_job_factory(job_factory_.get());
+}
+
+ServiceWorkerRequestContext::~ServiceWorkerRequestContext() {
+}
+
+} // namespace content
« 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