| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 #include "modules/background_sync/SyncRegistration.h" | 43 #include "modules/background_sync/SyncRegistration.h" |
| 44 #include "modules/fetch/Headers.h" | 44 #include "modules/fetch/Headers.h" |
| 45 #include "modules/geofencing/CircularGeofencingRegion.h" | 45 #include "modules/geofencing/CircularGeofencingRegion.h" |
| 46 #include "modules/geofencing/GeofencingEvent.h" | 46 #include "modules/geofencing/GeofencingEvent.h" |
| 47 #include "modules/navigatorconnect/AcceptConnectionObserver.h" | 47 #include "modules/navigatorconnect/AcceptConnectionObserver.h" |
| 48 #include "modules/navigatorconnect/CrossOriginServiceWorkerClient.h" | 48 #include "modules/navigatorconnect/CrossOriginServiceWorkerClient.h" |
| 49 #include "modules/navigatorconnect/ServicePortCollection.h" | 49 #include "modules/navigatorconnect/ServicePortCollection.h" |
| 50 #include "modules/navigatorconnect/WorkerNavigatorServices.h" | 50 #include "modules/navigatorconnect/WorkerNavigatorServices.h" |
| 51 #include "modules/notifications/Notification.h" | 51 #include "modules/notifications/Notification.h" |
| 52 #include "modules/notifications/NotificationEvent.h" | 52 #include "modules/notifications/NotificationEvent.h" |
| 53 #include "modules/notifications/NotificationEventInit.h" |
| 53 #include "modules/push_messaging/PushEvent.h" | 54 #include "modules/push_messaging/PushEvent.h" |
| 54 #include "modules/push_messaging/PushMessageData.h" | 55 #include "modules/push_messaging/PushMessageData.h" |
| 55 #include "modules/serviceworkers/ExtendableEvent.h" | 56 #include "modules/serviceworkers/ExtendableEvent.h" |
| 56 #include "modules/serviceworkers/FetchEvent.h" | 57 #include "modules/serviceworkers/FetchEvent.h" |
| 57 #include "modules/serviceworkers/ServiceWorkerGlobalScope.h" | 58 #include "modules/serviceworkers/ServiceWorkerGlobalScope.h" |
| 58 #include "modules/serviceworkers/WaitUntilObserver.h" | 59 #include "modules/serviceworkers/WaitUntilObserver.h" |
| 59 #include "platform/RuntimeEnabledFeatures.h" | 60 #include "platform/RuntimeEnabledFeatures.h" |
| 60 #include "public/platform/WebCrossOriginServiceWorkerClient.h" | 61 #include "public/platform/WebCrossOriginServiceWorkerClient.h" |
| 61 #include "public/platform/WebServiceWorkerEventResult.h" | 62 #include "public/platform/WebServiceWorkerEventResult.h" |
| 62 #include "public/platform/WebServiceWorkerRequest.h" | 63 #include "public/platform/WebServiceWorkerRequest.h" |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 ServiceWorkerGlobalScopeProxy::ServiceWorkerGlobalScopeProxy(WebEmbeddedWorkerIm
pl& embeddedWorker, Document& document, WebServiceWorkerContextClient& client) | 238 ServiceWorkerGlobalScopeProxy::ServiceWorkerGlobalScopeProxy(WebEmbeddedWorkerIm
pl& embeddedWorker, Document& document, WebServiceWorkerContextClient& client) |
| 238 : m_embeddedWorker(embeddedWorker) | 239 : m_embeddedWorker(embeddedWorker) |
| 239 , m_document(document) | 240 , m_document(document) |
| 240 , m_documentURL(document.url().copy()) | 241 , m_documentURL(document.url().copy()) |
| 241 , m_client(client) | 242 , m_client(client) |
| 242 , m_workerGlobalScope(nullptr) | 243 , m_workerGlobalScope(nullptr) |
| 243 { | 244 { |
| 244 } | 245 } |
| 245 | 246 |
| 246 } // namespace blink | 247 } // namespace blink |
| OLD | NEW |