| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 double event_dispatch_time) override; | 74 double event_dispatch_time) override; |
| 75 void DidHandleBackgroundFetchFailEvent(int event_id, | 75 void DidHandleBackgroundFetchFailEvent(int event_id, |
| 76 WebServiceWorkerEventResult, | 76 WebServiceWorkerEventResult, |
| 77 double event_dispatch_time) override; | 77 double event_dispatch_time) override; |
| 78 void DidHandleBackgroundFetchedEvent(int event_id, | 78 void DidHandleBackgroundFetchedEvent(int event_id, |
| 79 WebServiceWorkerEventResult, | 79 WebServiceWorkerEventResult, |
| 80 double event_dispatch_time) override; | 80 double event_dispatch_time) override; |
| 81 void DidHandleExtendableMessageEvent(int event_id, | 81 void DidHandleExtendableMessageEvent(int event_id, |
| 82 WebServiceWorkerEventResult, | 82 WebServiceWorkerEventResult, |
| 83 double event_dispatch_time) override; | 83 double event_dispatch_time) override; |
| 84 void RespondToFetchEvent(int response_id, | 84 void RespondToFetchEvent(int fetch_event_id, |
| 85 double event_dispatch_time) override; | 85 double event_dispatch_time) override; |
| 86 void RespondToFetchEvent(int response_id, | 86 void RespondToFetchEventWithResponse(int fetch_event_id, |
| 87 const WebServiceWorkerResponse&, | 87 const WebServiceWorkerResponse&, |
| 88 double event_dispatch_time) override; | 88 double event_dispatch_time) override; |
| 89 void RespondToPaymentRequestEvent(int response_id, | 89 void RespondToFetchEventWithResponseStream( |
| 90 int fetch_event_id, |
| 91 const WebServiceWorkerResponse&, |
| 92 WebServiceWorkerStreamHandle*, |
| 93 double event_dispatch_time) override; |
| 94 void RespondToPaymentRequestEvent(int event_id, |
| 90 const WebPaymentAppResponse&, | 95 const WebPaymentAppResponse&, |
| 91 double event_dispatch_time) override; | 96 double event_dispatch_time) override; |
| 92 void DidHandleFetchEvent(int fetch_event_id, | 97 void DidHandleFetchEvent(int fetch_event_id, |
| 93 WebServiceWorkerEventResult, | 98 WebServiceWorkerEventResult, |
| 94 double event_dispatch_time) override; | 99 double event_dispatch_time) override; |
| 95 void DidHandleInstallEvent(int install_event_id, | 100 void DidHandleInstallEvent(int install_event_id, |
| 96 WebServiceWorkerEventResult, | 101 WebServiceWorkerEventResult, |
| 97 double event_dispatch_time) override; | 102 double event_dispatch_time) override; |
| 98 void DidHandleNotificationClickEvent(int event_id, | 103 void DidHandleNotificationClickEvent(int event_id, |
| 99 WebServiceWorkerEventResult, | 104 WebServiceWorkerEventResult, |
| (...skipping 30 matching lines...) Expand all Loading... |
| 130 | 135 |
| 131 private: | 136 private: |
| 132 explicit ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient&); | 137 explicit ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient&); |
| 133 | 138 |
| 134 WebServiceWorkerContextClient& client_; | 139 WebServiceWorkerContextClient& client_; |
| 135 }; | 140 }; |
| 136 | 141 |
| 137 } // namespace blink | 142 } // namespace blink |
| 138 | 143 |
| 139 #endif // ServiceWorkerGlobalScopeClientImpl_h | 144 #endif // ServiceWorkerGlobalScopeClientImpl_h |
| OLD | NEW |