Index: content/browser/service_worker/service_worker_context_request_handler.cc |
diff --git a/content/browser/service_worker/service_worker_context_request_handler.cc b/content/browser/service_worker/service_worker_context_request_handler.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2e7c655a96cb7699c1e8b78a86d5db32289a08ef |
--- /dev/null |
+++ b/content/browser/service_worker/service_worker_context_request_handler.cc |
@@ -0,0 +1,26 @@ |
+// 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_context_request_handler.h" |
+ |
+namespace content { |
+ |
+ServiceWorkerContextRequestHandler::ServiceWorkerContextRequestHandler( |
+ base::WeakPtr<ServiceWorkerContextCore> context, |
+ base::WeakPtr<ServiceWorkerProviderHost> provider_host, |
+ ResourceType::Type resource_type) |
+ : ServiceWorkerRequestHandler(context, provider_host, resource_type) { |
+} |
+ |
+ServiceWorkerContextRequestHandler::~ServiceWorkerContextRequestHandler() { |
+} |
+ |
+net::URLRequestJob* ServiceWorkerContextRequestHandler::MaybeCreateJob( |
+ net::URLRequest* request, |
+ net::NetworkDelegate* network_delegate) { |
+ // TODO(michaeln): write me |
+ return NULL; |
+} |
+ |
+} // namespace content |