Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(661)

Side by Side Diff: third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h

Issue 2684533002: [WIP] Mojofy respondwith
Patch Set: rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 13 matching lines...) Expand all
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef ServiceWorkerGlobalScopeClient_h 31 #ifndef ServiceWorkerGlobalScopeClient_h
32 #define ServiceWorkerGlobalScopeClient_h 32 #define ServiceWorkerGlobalScopeClient_h
33 33
34 #include <memory>
34 #include "core/dom/MessagePort.h" 35 #include "core/dom/MessagePort.h"
35 #include "core/workers/WorkerClients.h" 36 #include "core/workers/WorkerClients.h"
36 #include "modules/ModulesExport.h" 37 #include "modules/ModulesExport.h"
38 #include "mojo/public/cpp/system/data_pipe.h"
37 #include "public/platform/WebMessagePortChannel.h" 39 #include "public/platform/WebMessagePortChannel.h"
38 #include "public/platform/modules/serviceworker/WebServiceWorkerClientsClaimCall backs.h" 40 #include "public/platform/modules/serviceworker/WebServiceWorkerClientsClaimCall backs.h"
39 #include "public/platform/modules/serviceworker/WebServiceWorkerClientsInfo.h" 41 #include "public/platform/modules/serviceworker/WebServiceWorkerClientsInfo.h"
40 #include "public/platform/modules/serviceworker/WebServiceWorkerEventResult.h" 42 #include "public/platform/modules/serviceworker/WebServiceWorkerEventResult.h"
41 #include "public/platform/modules/serviceworker/WebServiceWorkerSkipWaitingCallb acks.h" 43 #include "public/platform/modules/serviceworker/WebServiceWorkerSkipWaitingCallb acks.h"
42 #include "wtf/Forward.h" 44 #include "wtf/Forward.h"
43 #include "wtf/Noncopyable.h" 45 #include "wtf/Noncopyable.h"
44 #include <memory>
45 46
46 namespace blink { 47 namespace blink {
47 48
48 struct WebPaymentAppResponse; 49 struct WebPaymentAppResponse;
49 struct WebServiceWorkerClientQueryOptions; 50 struct WebServiceWorkerClientQueryOptions;
50 class ExecutionContext; 51 class ExecutionContext;
51 class WebServiceWorkerResponse; 52 class WebServiceWorkerResponse;
52 class WebURL; 53 class WebURL;
53 class WorkerClients; 54 class WorkerClients;
54 55
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 virtual void didHandleBackgroundFetchedEvent(int eventID, 91 virtual void didHandleBackgroundFetchedEvent(int eventID,
91 WebServiceWorkerEventResult, 92 WebServiceWorkerEventResult,
92 double eventDispatchTime) = 0; 93 double eventDispatchTime) = 0;
93 virtual void didHandleExtendableMessageEvent(int eventID, 94 virtual void didHandleExtendableMessageEvent(int eventID,
94 WebServiceWorkerEventResult, 95 WebServiceWorkerEventResult,
95 double eventDispatchTime) = 0; 96 double eventDispatchTime) = 0;
96 // Calling respondToFetchEvent without response means no response was 97 // Calling respondToFetchEvent without response means no response was
97 // provided by the service worker in the fetch events, so fallback to native. 98 // provided by the service worker in the fetch events, so fallback to native.
98 virtual void respondToFetchEvent(int fetchEventID, 99 virtual void respondToFetchEvent(int fetchEventID,
99 double eventDispatchTime) = 0; 100 double eventDispatchTime) = 0;
100 virtual void respondToFetchEvent(int fetchEventID, 101 virtual void respondToFetchEventWithResponse(int fetchEventID,
101 const WebServiceWorkerResponse&, 102 const WebServiceWorkerResponse&,
102 double eventDispatchTime) = 0; 103 double eventDispatchTime) = 0;
104 virtual void respondToFetchEventWithResponseStream(
105 int fetchEventID,
106 const WebServiceWorkerResponse&,
107 mojo::ScopedDataPipeConsumerHandle data_stream,
108 double eventDispatchTime) = 0;
103 virtual void respondToPaymentRequestEvent(int eventID, 109 virtual void respondToPaymentRequestEvent(int eventID,
104 const WebPaymentAppResponse&, 110 const WebPaymentAppResponse&,
105 double eventDispatchTime) = 0; 111 double eventDispatchTime) = 0;
106 virtual void didHandleFetchEvent(int fetchEventID, 112 virtual void didHandleFetchEvent(int fetchEventID,
107 WebServiceWorkerEventResult, 113 WebServiceWorkerEventResult,
108 double eventDispatchTime) = 0; 114 double eventDispatchTime) = 0;
109 virtual void didHandleInstallEvent(int installEventID, 115 virtual void didHandleInstallEvent(int installEventID,
110 WebServiceWorkerEventResult, 116 WebServiceWorkerEventResult,
111 double eventDispatchTime) = 0; 117 double eventDispatchTime) = 0;
112 virtual void didHandleNotificationClickEvent(int eventID, 118 virtual void didHandleNotificationClickEvent(int eventID,
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 ServiceWorkerGlobalScopeClient() {} 153 ServiceWorkerGlobalScopeClient() {}
148 }; 154 };
149 155
150 MODULES_EXPORT void provideServiceWorkerGlobalScopeClientToWorker( 156 MODULES_EXPORT void provideServiceWorkerGlobalScopeClientToWorker(
151 WorkerClients*, 157 WorkerClients*,
152 ServiceWorkerGlobalScopeClient*); 158 ServiceWorkerGlobalScopeClient*);
153 159
154 } // namespace blink 160 } // namespace blink
155 161
156 #endif // ServiceWorkerGlobalScopeClient_h 162 #endif // ServiceWorkerGlobalScopeClient_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698