| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2014 Google Inc. All rights reserved. | 2 * Copyright (C) 2014 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 double eventDispatchTime) override; | 78 double eventDispatchTime) override; |
| 79 void didHandleNotificationClickEvent(int eventID, | 79 void didHandleNotificationClickEvent(int eventID, |
| 80 WebServiceWorkerEventResult, | 80 WebServiceWorkerEventResult, |
| 81 double eventDispatchTime) override; | 81 double eventDispatchTime) override; |
| 82 void didHandleNotificationCloseEvent(int eventID, | 82 void didHandleNotificationCloseEvent(int eventID, |
| 83 WebServiceWorkerEventResult, | 83 WebServiceWorkerEventResult, |
| 84 double eventDispatchTime) override; | 84 double eventDispatchTime) override; |
| 85 void didHandlePushEvent(int pushEventID, | 85 void didHandlePushEvent(int pushEventID, |
| 86 WebServiceWorkerEventResult, | 86 WebServiceWorkerEventResult, |
| 87 double eventDispatchTime) override; | 87 double eventDispatchTime) override; |
| 88 void didHandleSyncEvent(int syncEventID, | |
| 89 WebServiceWorkerEventResult, | |
| 90 double eventDispatchTime) override; | |
| 91 void postMessageToClient( | 88 void postMessageToClient( |
| 92 const WebString& clientUUID, | 89 const WebString& clientUUID, |
| 93 const WebString& message, | 90 const WebString& message, |
| 94 std::unique_ptr<WebMessagePortChannelArray>) override; | 91 std::unique_ptr<WebMessagePortChannelArray>) override; |
| 95 void postMessageToCrossOriginClient( | 92 void postMessageToCrossOriginClient( |
| 96 const WebCrossOriginServiceWorkerClient&, | 93 const WebCrossOriginServiceWorkerClient&, |
| 97 const WebString& message, | 94 const WebString& message, |
| 98 std::unique_ptr<WebMessagePortChannelArray>) override; | 95 std::unique_ptr<WebMessagePortChannelArray>) override; |
| 99 void skipWaiting(WebServiceWorkerSkipWaitingCallbacks*) override; | 96 void skipWaiting(WebServiceWorkerSkipWaitingCallbacks*) override; |
| 100 void claim(WebServiceWorkerClientsClaimCallbacks*) override; | 97 void claim(WebServiceWorkerClientsClaimCallbacks*) override; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 112 | 109 |
| 113 private: | 110 private: |
| 114 explicit ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient&); | 111 explicit ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient&); |
| 115 | 112 |
| 116 WebServiceWorkerContextClient& m_client; | 113 WebServiceWorkerContextClient& m_client; |
| 117 }; | 114 }; |
| 118 | 115 |
| 119 } // namespace blink | 116 } // namespace blink |
| 120 | 117 |
| 121 #endif // ServiceWorkerGlobalScopeClientImpl_h | 118 #endif // ServiceWorkerGlobalScopeClientImpl_h |
| OLD | NEW |