| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 void didHandleActivateEvent(int eventID, | 63 void didHandleActivateEvent(int eventID, |
| 64 WebServiceWorkerEventResult, | 64 WebServiceWorkerEventResult, |
| 65 double eventDispatchTime) override; | 65 double eventDispatchTime) override; |
| 66 void didHandleExtendableMessageEvent(int eventID, | 66 void didHandleExtendableMessageEvent(int eventID, |
| 67 WebServiceWorkerEventResult, | 67 WebServiceWorkerEventResult, |
| 68 double eventDispatchTime) override; | 68 double eventDispatchTime) override; |
| 69 void respondToFetchEvent(int responseID, double eventDispatchTime) override; | 69 void respondToFetchEvent(int responseID, double eventDispatchTime) override; |
| 70 void respondToFetchEvent(int responseID, | 70 void respondToFetchEvent(int responseID, |
| 71 const WebServiceWorkerResponse&, | 71 const WebServiceWorkerResponse&, |
| 72 double eventDispatchTime) override; | 72 double eventDispatchTime) override; |
| 73 void didHandleFetchEvent(int eventFinishID, | 73 void didHandleFetchEvent(int fetchEventID, |
| 74 WebServiceWorkerEventResult, | 74 WebServiceWorkerEventResult, |
| 75 double eventDispatchTime) override; | 75 double eventDispatchTime) override; |
| 76 void didHandleInstallEvent(int installEventID, | 76 void didHandleInstallEvent(int installEventID, |
| 77 WebServiceWorkerEventResult, | 77 WebServiceWorkerEventResult, |
| 78 double eventDispatchTime) override; | 78 double eventDispatchTime) override; |
| 79 void didHandleNotificationClickEvent(int eventID, | 79 void didHandleNotificationClickEvent(int eventID, |
| 80 WebServiceWorkerEventResult, | 80 WebServiceWorkerEventResult, |
| 81 double eventDispatchTime) override; | 81 double eventDispatchTime) override; |
| 82 void didHandleNotificationCloseEvent(int eventID, | 82 void didHandleNotificationCloseEvent(int eventID, |
| 83 WebServiceWorkerEventResult, | 83 WebServiceWorkerEventResult, |
| (...skipping 28 matching lines...) Expand all Loading... |
| 112 | 112 |
| 113 private: | 113 private: |
| 114 explicit ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient&); | 114 explicit ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient&); |
| 115 | 115 |
| 116 WebServiceWorkerContextClient& m_client; | 116 WebServiceWorkerContextClient& m_client; |
| 117 }; | 117 }; |
| 118 | 118 |
| 119 } // namespace blink | 119 } // namespace blink |
| 120 | 120 |
| 121 #endif // ServiceWorkerGlobalScopeClientImpl_h | 121 #endif // ServiceWorkerGlobalScopeClientImpl_h |
| OLD | NEW |