Chromium Code Reviews| 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 20 matching lines...) Expand all Loading... | |
| 31 #ifndef ServiceWorkerGlobalScopeClient_h | 31 #ifndef ServiceWorkerGlobalScopeClient_h |
| 32 #define ServiceWorkerGlobalScopeClient_h | 32 #define ServiceWorkerGlobalScopeClient_h |
| 33 | 33 |
| 34 #include "core/dom/MessagePort.h" | 34 #include "core/dom/MessagePort.h" |
| 35 #include "core/workers/WorkerClients.h" | 35 #include "core/workers/WorkerClients.h" |
| 36 #include "modules/ModulesExport.h" | 36 #include "modules/ModulesExport.h" |
| 37 #include "public/platform/WebMessagePortChannel.h" | 37 #include "public/platform/WebMessagePortChannel.h" |
| 38 #include "public/platform/modules/serviceworker/WebServiceWorkerClientsClaimCall backs.h" | 38 #include "public/platform/modules/serviceworker/WebServiceWorkerClientsClaimCall backs.h" |
| 39 #include "public/platform/modules/serviceworker/WebServiceWorkerClientsInfo.h" | 39 #include "public/platform/modules/serviceworker/WebServiceWorkerClientsInfo.h" |
| 40 #include "public/platform/modules/serviceworker/WebServiceWorkerEventResult.h" | 40 #include "public/platform/modules/serviceworker/WebServiceWorkerEventResult.h" |
| 41 #include "public/platform/modules/serviceworker/WebServiceWorkerPreloadResponseC allbacks.h" | |
| 41 #include "public/platform/modules/serviceworker/WebServiceWorkerSkipWaitingCallb acks.h" | 42 #include "public/platform/modules/serviceworker/WebServiceWorkerSkipWaitingCallb acks.h" |
| 42 #include "wtf/Forward.h" | 43 #include "wtf/Forward.h" |
| 43 #include "wtf/Noncopyable.h" | 44 #include "wtf/Noncopyable.h" |
| 44 #include <memory> | 45 #include <memory> |
| 45 | 46 |
| 46 namespace blink { | 47 namespace blink { |
| 47 | 48 |
| 48 struct WebCrossOriginServiceWorkerClient; | 49 struct WebCrossOriginServiceWorkerClient; |
| 49 struct WebServiceWorkerClientQueryOptions; | 50 struct WebServiceWorkerClientQueryOptions; |
| 50 class ExecutionContext; | 51 class ExecutionContext; |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 117 virtual void claim(WebServiceWorkerClientsClaimCallbacks*) = 0; | 118 virtual void claim(WebServiceWorkerClientsClaimCallbacks*) = 0; |
| 118 virtual void focus(const WebString& clientUUID, | 119 virtual void focus(const WebString& clientUUID, |
| 119 WebServiceWorkerClientCallbacks*) = 0; | 120 WebServiceWorkerClientCallbacks*) = 0; |
| 120 virtual void navigate(const WebString& clientUUID, | 121 virtual void navigate(const WebString& clientUUID, |
| 121 const WebURL&, | 122 const WebURL&, |
| 122 WebServiceWorkerClientCallbacks*) = 0; | 123 WebServiceWorkerClientCallbacks*) = 0; |
| 123 virtual void registerForeignFetchScopes( | 124 virtual void registerForeignFetchScopes( |
| 124 const WebVector<WebURL>& subScopes, | 125 const WebVector<WebURL>& subScopes, |
| 125 const WebVector<WebSecurityOrigin>&) = 0; | 126 const WebVector<WebSecurityOrigin>&) = 0; |
| 126 | 127 |
| 128 virtual void registerPreloadResponseCallback( | |
|
falken
2016/10/19 06:00:13
I think it's time to break the pattern of no comme
horo
2016/10/19 07:11:45
Done.
| |
| 129 int eventID, | |
| 130 WebServiceWorkerPreloadResponseCallbacks*) = 0; | |
|
falken
2016/10/19 06:00:13
Could this be std::unique_ptr (I think previously
horo
2016/10/19 07:11:45
Done.
| |
| 131 | |
| 127 static const char* supplementName(); | 132 static const char* supplementName(); |
| 128 static ServiceWorkerGlobalScopeClient* from(ExecutionContext*); | 133 static ServiceWorkerGlobalScopeClient* from(ExecutionContext*); |
| 129 | 134 |
| 130 protected: | 135 protected: |
| 131 ServiceWorkerGlobalScopeClient() {} | 136 ServiceWorkerGlobalScopeClient() {} |
| 132 }; | 137 }; |
| 133 | 138 |
| 134 MODULES_EXPORT void provideServiceWorkerGlobalScopeClientToWorker( | 139 MODULES_EXPORT void provideServiceWorkerGlobalScopeClientToWorker( |
| 135 WorkerClients*, | 140 WorkerClients*, |
| 136 ServiceWorkerGlobalScopeClient*); | 141 ServiceWorkerGlobalScopeClient*); |
| 137 | 142 |
| 138 } // namespace blink | 143 } // namespace blink |
| 139 | 144 |
| 140 #endif // ServiceWorkerGlobalScopeClient_h | 145 #endif // ServiceWorkerGlobalScopeClient_h |
| OLD | NEW |