| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(ServiceWorkerGlobalScopeClientImpl); | 44 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(ServiceWorkerGlobalScopeClientImpl); |
| 45 public: | 45 public: |
| 46 static PassOwnPtrWillBeRawPtr<WebCore::ServiceWorkerGlobalScopeClient> creat
e(WebServiceWorkerContextClient&); | 46 static PassOwnPtrWillBeRawPtr<WebCore::ServiceWorkerGlobalScopeClient> creat
e(WebServiceWorkerContextClient&); |
| 47 virtual ~ServiceWorkerGlobalScopeClientImpl(); | 47 virtual ~ServiceWorkerGlobalScopeClientImpl(); |
| 48 | 48 |
| 49 virtual void getClients(WebServiceWorkerClientsCallbacks*); | 49 virtual void getClients(WebServiceWorkerClientsCallbacks*); |
| 50 virtual WebURL scope() const OVERRIDE; | 50 virtual WebURL scope() const OVERRIDE; |
| 51 | 51 |
| 52 virtual void didHandleActivateEvent(int eventID, WebServiceWorkerEventResult
) OVERRIDE; | 52 virtual void didHandleActivateEvent(int eventID, WebServiceWorkerEventResult
) OVERRIDE; |
| 53 virtual void didHandleInstallEvent(int installEventID, WebServiceWorkerEvent
Result) OVERRIDE; | 53 virtual void didHandleInstallEvent(int installEventID, WebServiceWorkerEvent
Result) OVERRIDE; |
| 54 virtual void didHandleFetchEvent(int fetchEventID, PassRefPtr<WebCore::Respo
nse>) OVERRIDE; | 54 virtual void didHandleFetchEvent(int fetchEventID, PassRefPtrWillBeRawPtr<We
bCore::Response>) OVERRIDE; |
| 55 virtual void didHandleSyncEvent(int syncEventID) OVERRIDE; | 55 virtual void didHandleSyncEvent(int syncEventID) OVERRIDE; |
| 56 virtual void postMessageToClient(int clientID, const WebString& message, Pas
sOwnPtr<WebMessagePortChannelArray>) OVERRIDE; | 56 virtual void postMessageToClient(int clientID, const WebString& message, Pas
sOwnPtr<WebMessagePortChannelArray>) OVERRIDE; |
| 57 | 57 |
| 58 virtual void trace(WebCore::Visitor* visitor) OVERRIDE { WebCore::ServiceWor
kerGlobalScopeClient::trace(visitor); } | 58 virtual void trace(WebCore::Visitor* visitor) OVERRIDE { WebCore::ServiceWor
kerGlobalScopeClient::trace(visitor); } |
| 59 | 59 |
| 60 private: | 60 private: |
| 61 ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient&); | 61 explicit ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient&); |
| 62 | 62 |
| 63 WebServiceWorkerContextClient& m_client; | 63 WebServiceWorkerContextClient& m_client; |
| 64 }; | 64 }; |
| 65 | 65 |
| 66 } // namespace blink | 66 } // namespace blink |
| 67 | 67 |
| 68 #endif // ServiceWorkerGlobalScopeClientImpl_h | 68 #endif // ServiceWorkerGlobalScopeClientImpl_h |
| OLD | NEW |