Index: content/browser/service_worker/service_worker_dispatcher_host.h |
diff --git a/content/browser/service_worker/service_worker_dispatcher_host.h b/content/browser/service_worker/service_worker_dispatcher_host.h |
index 473f239c9caacba90672709e3d87f04d10fc6f89..307bad64e46a7d0b4501746a16edcf47ade00d0c 100644 |
--- a/content/browser/service_worker/service_worker_dispatcher_host.h |
+++ b/content/browser/service_worker/service_worker_dispatcher_host.h |
@@ -5,6 +5,7 @@ |
#ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_DISPATCHER_HOST_H_ |
#define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_DISPATCHER_HOST_H_ |
+#include "base/callback.h" |
#include "base/id_map.h" |
#include "base/memory/weak_ptr.h" |
#include "base/strings/string16.h" |
@@ -29,7 +30,8 @@ class CONTENT_EXPORT ServiceWorkerDispatcherHost : public BrowserMessageFilter { |
int render_process_id, |
MessagePortMessageFilter* message_port_message_filter); |
- void Init(ServiceWorkerContextWrapper* context_wrapper); |
+ void Init(ServiceWorkerContextWrapper* context_wrapper, |
+ const base::Callback<int(void)>& next_routing_id_callback); |
kinuko
2014/04/25 13:56:57
The new parameter needs a descriptive comment.
michaeln
2014/04/25 19:29:50
descriptive name would be even better
|
// BrowserIOMessageFilter implementation |
virtual void OnDestruct() const OVERRIDE; |