| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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, | 88 void didHandleSyncEvent(int syncEventID, |
| 89 WebServiceWorkerEventResult, | 89 WebServiceWorkerEventResult, |
| 90 double eventDispatchTime) override; | 90 double eventDispatchTime) override; |
| 91 void didHandlePaymentRequestEvent(int paymentRequestEventID, |
| 92 WebServiceWorkerEventResult, |
| 93 double eventDispatchTime) override; |
| 91 void postMessageToClient( | 94 void postMessageToClient( |
| 92 const WebString& clientUUID, | 95 const WebString& clientUUID, |
| 93 const WebString& message, | 96 const WebString& message, |
| 94 std::unique_ptr<WebMessagePortChannelArray>) override; | 97 std::unique_ptr<WebMessagePortChannelArray>) override; |
| 95 void postMessageToCrossOriginClient( | 98 void postMessageToCrossOriginClient( |
| 96 const WebCrossOriginServiceWorkerClient&, | 99 const WebCrossOriginServiceWorkerClient&, |
| 97 const WebString& message, | 100 const WebString& message, |
| 98 std::unique_ptr<WebMessagePortChannelArray>) override; | 101 std::unique_ptr<WebMessagePortChannelArray>) override; |
| 99 void skipWaiting(WebServiceWorkerSkipWaitingCallbacks*) override; | 102 void skipWaiting(WebServiceWorkerSkipWaitingCallbacks*) override; |
| 100 void claim(WebServiceWorkerClientsClaimCallbacks*) override; | 103 void claim(WebServiceWorkerClientsClaimCallbacks*) override; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 112 | 115 |
| 113 private: | 116 private: |
| 114 explicit ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient&); | 117 explicit ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient&); |
| 115 | 118 |
| 116 WebServiceWorkerContextClient& m_client; | 119 WebServiceWorkerContextClient& m_client; |
| 117 }; | 120 }; |
| 118 | 121 |
| 119 } // namespace blink | 122 } // namespace blink |
| 120 | 123 |
| 121 #endif // ServiceWorkerGlobalScopeClientImpl_h | 124 #endif // ServiceWorkerGlobalScopeClientImpl_h |
| OLD | NEW |