| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 void didHandleBackgroundFetchFailEvent(int eventID, | 75 void didHandleBackgroundFetchFailEvent(int eventID, |
| 76 WebServiceWorkerEventResult, | 76 WebServiceWorkerEventResult, |
| 77 double eventDispatchTime) override; | 77 double eventDispatchTime) override; |
| 78 void didHandleBackgroundFetchedEvent(int eventID, | 78 void didHandleBackgroundFetchedEvent(int eventID, |
| 79 WebServiceWorkerEventResult, | 79 WebServiceWorkerEventResult, |
| 80 double eventDispatchTime) override; | 80 double eventDispatchTime) override; |
| 81 void didHandleExtendableMessageEvent(int eventID, | 81 void didHandleExtendableMessageEvent(int eventID, |
| 82 WebServiceWorkerEventResult, | 82 WebServiceWorkerEventResult, |
| 83 double eventDispatchTime) override; | 83 double eventDispatchTime) override; |
| 84 void respondToFetchEvent(int responseID, double eventDispatchTime) override; | 84 void respondToFetchEvent(int responseID, double eventDispatchTime) override; |
| 85 void respondToFetchEvent(int responseID, | 85 void respondToFetchEventWithResponse(int responseID, |
| 86 const WebServiceWorkerResponse&, | 86 const WebServiceWorkerResponse&, |
| 87 double eventDispatchTime) override; | 87 double eventDispatchTime) override; |
| 88 void respondToFetchEventWithResponseStream(int responseID, |
| 89 const WebServiceWorkerResponse&, |
| 90 WebServiceWorkerStreamHandle*, |
| 91 double eventDispatchTime) override; |
| 88 void respondToPaymentRequestEvent(int responseID, | 92 void respondToPaymentRequestEvent(int responseID, |
| 89 const WebPaymentAppResponse&, | 93 const WebPaymentAppResponse&, |
| 90 double eventDispatchTime) override; | 94 double eventDispatchTime) override; |
| 91 void didHandleFetchEvent(int fetchEventID, | 95 void didHandleFetchEvent(int fetchEventID, |
| 92 WebServiceWorkerEventResult, | 96 WebServiceWorkerEventResult, |
| 93 double eventDispatchTime) override; | 97 double eventDispatchTime) override; |
| 94 void didHandleInstallEvent(int installEventID, | 98 void didHandleInstallEvent(int installEventID, |
| 95 WebServiceWorkerEventResult, | 99 WebServiceWorkerEventResult, |
| 96 double eventDispatchTime) override; | 100 double eventDispatchTime) override; |
| 97 void didHandleNotificationClickEvent(int eventID, | 101 void didHandleNotificationClickEvent(int eventID, |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 | 133 |
| 130 private: | 134 private: |
| 131 explicit ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient&); | 135 explicit ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient&); |
| 132 | 136 |
| 133 WebServiceWorkerContextClient& m_client; | 137 WebServiceWorkerContextClient& m_client; |
| 134 }; | 138 }; |
| 135 | 139 |
| 136 } // namespace blink | 140 } // namespace blink |
| 137 | 141 |
| 138 #endif // ServiceWorkerGlobalScopeClientImpl_h | 142 #endif // ServiceWorkerGlobalScopeClientImpl_h |
| OLD | NEW |