| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 | 65 |
| 66 void didHandleActivateEvent(int eventID, | 66 void didHandleActivateEvent(int eventID, |
| 67 WebServiceWorkerEventResult, | 67 WebServiceWorkerEventResult, |
| 68 double eventDispatchTime) override; | 68 double eventDispatchTime) override; |
| 69 void didHandleBackgroundFetchAbortEvent(int eventID, | 69 void didHandleBackgroundFetchAbortEvent(int eventID, |
| 70 WebServiceWorkerEventResult, | 70 WebServiceWorkerEventResult, |
| 71 double eventDispatchTime) override; | 71 double eventDispatchTime) override; |
| 72 void didHandleBackgroundFetchClickEvent(int eventID, | 72 void didHandleBackgroundFetchClickEvent(int eventID, |
| 73 WebServiceWorkerEventResult, | 73 WebServiceWorkerEventResult, |
| 74 double eventDispatchTime) override; | 74 double eventDispatchTime) override; |
| 75 void didHandleBackgroundFetchFailEvent(int eventID, |
| 76 WebServiceWorkerEventResult, |
| 77 double eventDispatchTime) override; |
| 78 void didHandleBackgroundFetchedEvent(int eventID, |
| 79 WebServiceWorkerEventResult, |
| 80 double eventDispatchTime) override; |
| 75 void didHandleExtendableMessageEvent(int eventID, | 81 void didHandleExtendableMessageEvent(int eventID, |
| 76 WebServiceWorkerEventResult, | 82 WebServiceWorkerEventResult, |
| 77 double eventDispatchTime) override; | 83 double eventDispatchTime) override; |
| 78 void respondToFetchEvent(int responseID, double eventDispatchTime) override; | 84 void respondToFetchEvent(int responseID, double eventDispatchTime) override; |
| 79 void respondToFetchEvent(int responseID, | 85 void respondToFetchEvent(int responseID, |
| 80 const WebServiceWorkerResponse&, | 86 const WebServiceWorkerResponse&, |
| 81 double eventDispatchTime) override; | 87 double eventDispatchTime) override; |
| 82 void respondToPaymentRequestEvent(int responseID, | 88 void respondToPaymentRequestEvent(int responseID, |
| 83 const WebPaymentAppResponse&, | 89 const WebPaymentAppResponse&, |
| 84 double eventDispatchTime) override; | 90 double eventDispatchTime) override; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 | 129 |
| 124 private: | 130 private: |
| 125 explicit ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient&); | 131 explicit ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient&); |
| 126 | 132 |
| 127 WebServiceWorkerContextClient& m_client; | 133 WebServiceWorkerContextClient& m_client; |
| 128 }; | 134 }; |
| 129 | 135 |
| 130 } // namespace blink | 136 } // namespace blink |
| 131 | 137 |
| 132 #endif // ServiceWorkerGlobalScopeClientImpl_h | 138 #endif // ServiceWorkerGlobalScopeClientImpl_h |
| OLD | NEW |