| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 double eventDispatchTime) override; | 83 double eventDispatchTime) override; |
| 84 void didHandleNotificationCloseEvent(int eventID, | 84 void didHandleNotificationCloseEvent(int eventID, |
| 85 WebServiceWorkerEventResult, | 85 WebServiceWorkerEventResult, |
| 86 double eventDispatchTime) override; | 86 double eventDispatchTime) override; |
| 87 void didHandlePushEvent(int pushEventID, | 87 void didHandlePushEvent(int pushEventID, |
| 88 WebServiceWorkerEventResult, | 88 WebServiceWorkerEventResult, |
| 89 double eventDispatchTime) override; | 89 double eventDispatchTime) override; |
| 90 void didHandleSyncEvent(int syncEventID, | 90 void didHandleSyncEvent(int syncEventID, |
| 91 WebServiceWorkerEventResult, | 91 WebServiceWorkerEventResult, |
| 92 double eventDispatchTime) override; | 92 double eventDispatchTime) override; |
| 93 void didHandlePaymentRequestEvent(int paymentRequestEventID, |
| 94 WebServiceWorkerEventResult, |
| 95 double eventDispatchTime) override; |
| 93 void postMessageToClient( | 96 void postMessageToClient( |
| 94 const WebString& clientUUID, | 97 const WebString& clientUUID, |
| 95 const WebString& message, | 98 const WebString& message, |
| 96 std::unique_ptr<WebMessagePortChannelArray>) override; | 99 std::unique_ptr<WebMessagePortChannelArray>) override; |
| 97 void postMessageToCrossOriginClient( | 100 void postMessageToCrossOriginClient( |
| 98 const WebCrossOriginServiceWorkerClient&, | 101 const WebCrossOriginServiceWorkerClient&, |
| 99 const WebString& message, | 102 const WebString& message, |
| 100 std::unique_ptr<WebMessagePortChannelArray>) override; | 103 std::unique_ptr<WebMessagePortChannelArray>) override; |
| 101 void skipWaiting( | 104 void skipWaiting( |
| 102 std::unique_ptr<WebServiceWorkerSkipWaitingCallbacks>) override; | 105 std::unique_ptr<WebServiceWorkerSkipWaitingCallbacks>) override; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 115 | 118 |
| 116 private: | 119 private: |
| 117 explicit ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient&); | 120 explicit ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient&); |
| 118 | 121 |
| 119 WebServiceWorkerContextClient& m_client; | 122 WebServiceWorkerContextClient& m_client; |
| 120 }; | 123 }; |
| 121 | 124 |
| 122 } // namespace blink | 125 } // namespace blink |
| 123 | 126 |
| 124 #endif // ServiceWorkerGlobalScopeClientImpl_h | 127 #endif // ServiceWorkerGlobalScopeClientImpl_h |
| OLD | NEW |