| 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/service_worker/embedded_worker_context_client.h" | 5 #include "content/renderer/service_worker/embedded_worker_context_client.h" |
| 6 | 6 |
| 7 #include "base/lazy_instance.h" | 7 #include "base/lazy_instance.h" |
| 8 #include "base/message_loop/message_loop_proxy.h" | 8 #include "base/message_loop/message_loop_proxy.h" |
| 9 #include "base/pickle.h" | 9 #include "base/pickle.h" |
| 10 #include "base/threading/thread_local.h" | 10 #include "base/threading/thread_local.h" |
| 11 #include "content/child/thread_safe_sender.h" | 11 #include "content/child/thread_safe_sender.h" |
| 12 #include "content/common/service_worker_messages.h" | 12 #include "content/common/service_worker/embedded_worker_messages.h" |
| 13 #include "content/renderer/render_thread_impl.h" | 13 #include "content/renderer/render_thread_impl.h" |
| 14 #include "content/renderer/service_worker/embedded_worker_dispatcher.h" | 14 #include "content/renderer/service_worker/embedded_worker_dispatcher.h" |
| 15 #include "ipc/ipc_message_macros.h" | 15 #include "ipc/ipc_message_macros.h" |
| 16 #include "third_party/WebKit/public/platform/WebString.h" | 16 #include "third_party/WebKit/public/platform/WebString.h" |
| 17 #include "webkit/child/worker_task_runner.h" | 17 #include "webkit/child/worker_task_runner.h" |
| 18 | 18 |
| 19 using webkit_glue::WorkerTaskRunner; | 19 using webkit_glue::WorkerTaskRunner; |
| 20 | 20 |
| 21 namespace content { | 21 namespace content { |
| 22 | 22 |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 void EmbeddedWorkerContextClient::OnFetchEvent( | 102 void EmbeddedWorkerContextClient::OnFetchEvent( |
| 103 int thread_id, | 103 int thread_id, |
| 104 int embedded_worker_id, | 104 int embedded_worker_id, |
| 105 const ServiceWorkerFetchRequest& request) { | 105 const ServiceWorkerFetchRequest& request) { |
| 106 // TODO(kinuko): Implement. | 106 // TODO(kinuko): Implement. |
| 107 // This is to call WebServiceWorkerContextProxy's dispatchFetchEvent method. | 107 // This is to call WebServiceWorkerContextProxy's dispatchFetchEvent method. |
| 108 NOTIMPLEMENTED(); | 108 NOTIMPLEMENTED(); |
| 109 } | 109 } |
| 110 | 110 |
| 111 } // namespace content | 111 } // namespace content |
| OLD | NEW |