Chromium Code Reviews| Index: Source/web/ServiceWorkerGlobalScopeProxy.h |
| diff --git a/Source/web/ServiceWorkerGlobalScopeProxy.h b/Source/web/ServiceWorkerGlobalScopeProxy.h |
| index e7902cf94e1e2cf23315ef6d9fe4b0e68b2628a7..a57ebdaa34c8067cf28bf23300fd60b38f7df95e 100644 |
| --- a/Source/web/ServiceWorkerGlobalScopeProxy.h |
| +++ b/Source/web/ServiceWorkerGlobalScopeProxy.h |
| @@ -46,6 +46,7 @@ class ServiceWorkerGlobalScope; |
| class WebEmbeddedWorkerImpl; |
| class WebServiceWorkerContextClient; |
| class WebServiceWorkerRequest; |
| +struct WebSyncRegistration; |
| // This class is created and destructed on the main thread, but live most |
| // of its time as a resident of the worker thread. |
| @@ -79,7 +80,10 @@ public: |
| void dispatchNotificationClickEvent(int, int64_t notificationID, const WebNotificationData&) override; |
| void dispatchPushEvent(int, const WebString& data) override; |
| void dispatchServicePortConnectEvent(WebServicePortConnectEventCallbacks*, const WebURL& targetURL, const WebString& origin, WebServicePortID) override; |
| + // TODO(iclelland): Remove the single-parameter version once all call sites |
|
jkarlin
2015/07/13 11:49:05
"all call sites *are* updated"
|
| + // updated. |
| void dispatchSyncEvent(int) override; |
| + void dispatchSyncEvent(int, const WebSyncRegistration&) override; |
| void addStashedMessagePorts(const WebMessagePortChannelArray&, const WebVector<WebString>& webChannelNames) override; |
| // WorkerReportingProxy overrides: |