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

Side by Side Diff: third_party/WebKit/public/web/WebSharedWorkerClient.h

Issue 2804843005: Implement the infrastructure of creating WorkerFetchContext in worker global scope. (Closed)
Patch Set: s/WebScheduler.h/web_scheduler.h/ Created 3 years, 7 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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 14 matching lines...) Expand all
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 WebSharedWorkerClient_h 31 #ifndef WebSharedWorkerClient_h
32 #define WebSharedWorkerClient_h 32 #define WebSharedWorkerClient_h
33 33
34 #include "public/platform/WebMessagePortChannel.h" 34 #include "public/platform/WebMessagePortChannel.h"
35 #include "public/platform/WebWorkerFetchContext.h"
35 #include "public/web/WebDevToolsAgentClient.h" 36 #include "public/web/WebDevToolsAgentClient.h"
36 37
37 namespace blink { 38 namespace blink {
38 39
39 class WebApplicationCacheHost; 40 class WebApplicationCacheHost;
40 class WebApplicationCacheHostClient; 41 class WebApplicationCacheHostClient;
41 class WebNotificationPresenter; 42 class WebNotificationPresenter;
42 class WebSecurityOrigin; 43 class WebSecurityOrigin;
43 class WebServiceWorkerNetworkProvider; 44 class WebServiceWorkerNetworkProvider;
44 class WebString; 45 class WebString;
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 } 87 }
87 88
88 virtual void SendDevToolsMessage(int session_id, 89 virtual void SendDevToolsMessage(int session_id,
89 int call_id, 90 int call_id,
90 const WebString& message, 91 const WebString& message,
91 const WebString& state) {} 92 const WebString& state) {}
92 virtual WebDevToolsAgentClient::WebKitClientMessageLoop* 93 virtual WebDevToolsAgentClient::WebKitClientMessageLoop*
93 CreateDevToolsMessageLoop() { 94 CreateDevToolsMessageLoop() {
94 return nullptr; 95 return nullptr;
95 } 96 }
97
98 // Returns a new WebWorkerFetchContext for the shared worker. Ownership of the
99 // returned object is transferred to the caller. This is used only when
100 // off-main-thread-fetch is enabled.
101 virtual std::unique_ptr<WebWorkerFetchContext> CreateWorkerFetchContext(
102 WebServiceWorkerNetworkProvider*) {
103 return nullptr;
104 }
96 }; 105 };
97 106
98 } // namespace blink 107 } // namespace blink
99 108
100 #endif 109 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698