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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 void setRegistration(WebPassOwnPtr<WebServiceWorkerRegistration::Handle>) ov
erride; | 75 void setRegistration(WebPassOwnPtr<WebServiceWorkerRegistration::Handle>) ov
erride; |
76 void dispatchActivateEvent(int) override; | 76 void dispatchActivateEvent(int) override; |
77 void dispatchCrossOriginMessageEvent(const WebCrossOriginServiceWorkerClient
&, const WebString& message, const WebMessagePortChannelArray&) override; | 77 void dispatchCrossOriginMessageEvent(const WebCrossOriginServiceWorkerClient
&, const WebString& message, const WebMessagePortChannelArray&) override; |
78 void dispatchExtendableMessageEvent(int, const WebString& message, const Web
MessagePortChannelArray&) override; | 78 void dispatchExtendableMessageEvent(int, const WebString& message, const Web
MessagePortChannelArray&) override; |
79 void dispatchFetchEvent(int, const WebServiceWorkerRequest&) override; | 79 void dispatchFetchEvent(int, const WebServiceWorkerRequest&) override; |
80 void dispatchForeignFetchEvent(int, const WebServiceWorkerRequest&) override
; | 80 void dispatchForeignFetchEvent(int, const WebServiceWorkerRequest&) override
; |
81 void dispatchGeofencingEvent(int, WebGeofencingEventType, const WebString& r
egionID, const WebCircularGeofencingRegion&) override; | 81 void dispatchGeofencingEvent(int, WebGeofencingEventType, const WebString& r
egionID, const WebCircularGeofencingRegion&) override; |
82 void dispatchInstallEvent(int) override; | 82 void dispatchInstallEvent(int) override; |
83 void dispatchMessageEvent(const WebString& message, const WebMessagePortChan
nelArray&) override; | 83 void dispatchMessageEvent(const WebString& message, const WebMessagePortChan
nelArray&) override; |
84 void dispatchNotificationClickEvent(int, int64_t notificationID, const WebNo
tificationData&, int actionIndex) override; | 84 void dispatchNotificationClickEvent(int, int64_t notificationID, const WebNo
tificationData&, int actionIndex) override; |
| 85 void dispatchNotificationCloseEvent(int, int64_t notificationID, const WebNo
tificationData&) override; |
85 void dispatchPushEvent(int, const WebString& data) override; | 86 void dispatchPushEvent(int, const WebString& data) override; |
86 void dispatchServicePortConnectEvent(WebServicePortConnectEventCallbacks*, c
onst WebURL& targetURL, const WebString& origin, WebServicePortID) override; | 87 void dispatchServicePortConnectEvent(WebServicePortConnectEventCallbacks*, c
onst WebURL& targetURL, const WebString& origin, WebServicePortID) override; |
87 void dispatchSyncEvent(int, const WebSyncRegistration&, LastChanceOption) ov
erride; | 88 void dispatchSyncEvent(int, const WebSyncRegistration&, LastChanceOption) ov
erride; |
88 | 89 |
89 // WorkerReportingProxy overrides: | 90 // WorkerReportingProxy overrides: |
90 void reportException(const String& errorMessage, int lineNumber, int columnN
umber, const String& sourceURL, int exceptionId) override; | 91 void reportException(const String& errorMessage, int lineNumber, int columnN
umber, const String& sourceURL, int exceptionId) override; |
91 void reportConsoleMessage(PassRefPtrWillBeRawPtr<ConsoleMessage>) override; | 92 void reportConsoleMessage(PassRefPtrWillBeRawPtr<ConsoleMessage>) override; |
92 void postMessageToPageInspector(const String&) override; | 93 void postMessageToPageInspector(const String&) override; |
93 void postWorkerConsoleAgentEnabled() override { } | 94 void postWorkerConsoleAgentEnabled() override { } |
94 void didEvaluateWorkerScript(bool success) override; | 95 void didEvaluateWorkerScript(bool success) override; |
(...skipping 28 matching lines...) Expand all Loading... |
123 KURL m_documentURL; | 124 KURL m_documentURL; |
124 | 125 |
125 WebServiceWorkerContextClient* m_client; | 126 WebServiceWorkerContextClient* m_client; |
126 | 127 |
127 RawPtrWillBeMember<ServiceWorkerGlobalScope> m_workerGlobalScope; | 128 RawPtrWillBeMember<ServiceWorkerGlobalScope> m_workerGlobalScope; |
128 }; | 129 }; |
129 | 130 |
130 } // namespace blink | 131 } // namespace blink |
131 | 132 |
132 #endif // ServiceWorkerGlobalScopeProxy_h | 133 #endif // ServiceWorkerGlobalScopeProxy_h |
OLD | NEW |