| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 virtual ~WebServiceWorkerContextProxy() { } | 51 virtual ~WebServiceWorkerContextProxy() { } |
| 52 | 52 |
| 53 virtual void setRegistration(std::unique_ptr<WebServiceWorkerRegistration::H
andle>) = 0; | 53 virtual void setRegistration(std::unique_ptr<WebServiceWorkerRegistration::H
andle>) = 0; |
| 54 | 54 |
| 55 virtual void dispatchActivateEvent(int eventID) = 0; | 55 virtual void dispatchActivateEvent(int eventID) = 0; |
| 56 virtual void dispatchExtendableMessageEvent(int eventID, const WebString& me
ssage, const WebSecurityOrigin& sourceOrigin, const WebMessagePortChannelArray&,
const WebServiceWorkerClientInfo&) = 0; | 56 virtual void dispatchExtendableMessageEvent(int eventID, const WebString& me
ssage, const WebSecurityOrigin& sourceOrigin, const WebMessagePortChannelArray&,
const WebServiceWorkerClientInfo&) = 0; |
| 57 virtual void dispatchExtendableMessageEvent(int eventID, const WebString& me
ssage, const WebSecurityOrigin& sourceOrigin, const WebMessagePortChannelArray&,
std::unique_ptr<WebServiceWorker::Handle>) = 0; | 57 virtual void dispatchExtendableMessageEvent(int eventID, const WebString& me
ssage, const WebSecurityOrigin& sourceOrigin, const WebMessagePortChannelArray&,
std::unique_ptr<WebServiceWorker::Handle>) = 0; |
| 58 virtual void dispatchInstallEvent(int eventID) = 0; | 58 virtual void dispatchInstallEvent(int eventID) = 0; |
| 59 virtual void dispatchFetchEvent(int responseID, int eventFinishID, const Web
ServiceWorkerRequest& webRequest) = 0; | 59 virtual void dispatchFetchEvent(int responseID, int eventFinishID, const Web
ServiceWorkerRequest& webRequest) = 0; |
| 60 virtual void dispatchForeignFetchEvent(int responseID, int eventFinishID, co
nst WebServiceWorkerRequest& webRequest) = 0; | 60 virtual void dispatchForeignFetchEvent(int responseID, int eventFinishID, co
nst WebServiceWorkerRequest& webRequest) = 0; |
| 61 virtual void dispatchNotificationClickEvent(int eventID, int64_t notificatio
nID, const WebNotificationData&, int actionIndex) = 0; | 61 virtual void dispatchNotificationClickEvent(int eventID, const WebString& no
tificationID, const WebNotificationData&, int actionIndex) = 0; |
| 62 virtual void dispatchNotificationCloseEvent(int eventID, int64_t notificatio
nID, const WebNotificationData&) = 0; | 62 virtual void dispatchNotificationCloseEvent(int eventID, const WebString& no
tificationID, const WebNotificationData&) = 0; |
| 63 virtual void dispatchPushEvent(int eventID, const WebString& data) = 0; | 63 virtual void dispatchPushEvent(int eventID, const WebString& data) = 0; |
| 64 | 64 |
| 65 virtual bool hasFetchEventHandler() = 0; | 65 virtual bool hasFetchEventHandler() = 0; |
| 66 | 66 |
| 67 enum LastChanceOption { | 67 enum LastChanceOption { |
| 68 IsNotLastChance, | 68 IsNotLastChance, |
| 69 IsLastChance | 69 IsLastChance |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 // Once the ServiceWorker has finished handling the sync event, | 72 // Once the ServiceWorker has finished handling the sync event, |
| 73 // didHandleSyncEvent is called on the context client. | 73 // didHandleSyncEvent is called on the context client. |
| 74 virtual void dispatchSyncEvent(int syncEventID, const WebString& tag, LastCh
anceOption) = 0; | 74 virtual void dispatchSyncEvent(int syncEventID, const WebString& tag, LastCh
anceOption) = 0; |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 } // namespace blink | 77 } // namespace blink |
| 78 | 78 |
| 79 #endif // WebServiceWorkerContextProxy_h | 79 #endif // WebServiceWorkerContextProxy_h |
| OLD | NEW |