OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_RENDERER_SERVICE_WORKER_SERVICE_WORKER_CONTEXT_CLIENT_H_ | 5 #ifndef CONTENT_RENDERER_SERVICE_WORKER_SERVICE_WORKER_CONTEXT_CLIENT_H_ |
6 #define CONTENT_RENDERER_SERVICE_WORKER_SERVICE_WORKER_CONTEXT_CLIENT_H_ | 6 #define CONTENT_RENDERER_SERVICE_WORKER_SERVICE_WORKER_CONTEXT_CLIENT_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 int worker_devtools_agent_route_id); | 79 int worker_devtools_agent_route_id); |
80 ~ServiceWorkerContextClient() override; | 80 ~ServiceWorkerContextClient() override; |
81 | 81 |
82 void OnMessageReceived(int thread_id, | 82 void OnMessageReceived(int thread_id, |
83 int embedded_worker_id, | 83 int embedded_worker_id, |
84 const IPC::Message& message); | 84 const IPC::Message& message); |
85 | 85 |
86 // Called some time after the worker has started. Attempts to use the | 86 // Called some time after the worker has started. Attempts to use the |
87 // ServiceRegistry to connect to services before this method is called are | 87 // ServiceRegistry to connect to services before this method is called are |
88 // queued up and will resolve after this method is called. | 88 // queued up and will resolve after this method is called. |
89 void BindServiceRegistry( | 89 void BindServiceRegistry(shell::mojom::InterfaceProviderRequest services, |
90 mojo::shell::mojom::InterfaceProviderRequest services, | 90 shell::mojom::InterfaceProviderPtr exposed_services); |
91 mojo::shell::mojom::InterfaceProviderPtr exposed_services); | |
92 | 91 |
93 // WebServiceWorkerContextClient overrides. | 92 // WebServiceWorkerContextClient overrides. |
94 blink::WebURL scope() const override; | 93 blink::WebURL scope() const override; |
95 void getClient(const blink::WebString&, | 94 void getClient(const blink::WebString&, |
96 blink::WebServiceWorkerClientCallbacks*) override; | 95 blink::WebServiceWorkerClientCallbacks*) override; |
97 void getClients(const blink::WebServiceWorkerClientQueryOptions&, | 96 void getClients(const blink::WebServiceWorkerClientQueryOptions&, |
98 blink::WebServiceWorkerClientsCallbacks*) override; | 97 blink::WebServiceWorkerClientsCallbacks*) override; |
99 void openWindow(const blink::WebURL&, | 98 void openWindow(const blink::WebURL&, |
100 blink::WebServiceWorkerClientCallbacks*) override; | 99 blink::WebServiceWorkerClientCallbacks*) override; |
101 void setCachedMetadata(const blink::WebURL&, | 100 void setCachedMetadata(const blink::WebURL&, |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 // Initialized on the worker thread in workerContextStarted and | 257 // Initialized on the worker thread in workerContextStarted and |
259 // destructed on the worker thread in willDestroyWorkerContext. | 258 // destructed on the worker thread in willDestroyWorkerContext. |
260 std::unique_ptr<WorkerContextData> context_; | 259 std::unique_ptr<WorkerContextData> context_; |
261 | 260 |
262 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerContextClient); | 261 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerContextClient); |
263 }; | 262 }; |
264 | 263 |
265 } // namespace content | 264 } // namespace content |
266 | 265 |
267 #endif // CONTENT_RENDERER_SERVICE_WORKER_SERVICE_WORKER_CONTEXT_CLIENT_H_ | 266 #endif // CONTENT_RENDERER_SERVICE_WORKER_SERVICE_WORKER_CONTEXT_CLIENT_H_ |
OLD | NEW |