Index: content/browser/storage_partition_impl.cc |
diff --git a/content/browser/storage_partition_impl.cc b/content/browser/storage_partition_impl.cc |
index 41ea89e0e514b885b5adcd6574303a3d732a9b65..93cc4d15290fb9cee1ada0ba51ea9ef6f3582f70 100644 |
--- a/content/browser/storage_partition_impl.cc |
+++ b/content/browser/storage_partition_impl.cc |
@@ -17,6 +17,7 @@ |
#include "content/browser/gpu/shader_disk_cache.h" |
#include "content/browser/host_zoom_map_impl.h" |
#include "content/browser/navigator_connect/navigator_connect_context_impl.h" |
+#include "content/browser/navigator_connect/navigator_connect_service_worker_service_factory.h" |
#include "content/browser/notifications/platform_notification_context_impl.h" |
#include "content/common/dom_storage/dom_storage_types.h" |
#include "content/public/browser/browser_context.h" |
@@ -519,7 +520,9 @@ |
context->CreateZoomLevelDelegate(partition_path))); |
scoped_refptr<NavigatorConnectContextImpl> navigator_connect_context = |
- new NavigatorConnectContextImpl(service_worker_context); |
+ new NavigatorConnectContextImpl(); |
+ navigator_connect_context->AddFactory(make_scoped_ptr( |
+ new NavigatorConnectServiceWorkerServiceFactory(service_worker_context))); |
scoped_refptr<PlatformNotificationContextImpl> platform_notification_context = |
new PlatformNotificationContextImpl(path, context, |