| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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( |
| 90 mojo::shell::mojom::InterfaceProviderRequest services, | 90 mojo::shell::mojom::InterfaceProviderRequest services, |
| 91 mojo::shell::mojom::InterfaceProviderPtr exposed_services); | 91 mojo::shell::mojom::InterfaceProviderPtr exposed_services); |
| 92 | 92 |
| 93 // WebServiceWorkerContextClient overrides. | 93 // WebServiceWorkerContextClient overrides. |
| 94 blink::WebURL scope() const override; | 94 blink::WebURL scope() const override; |
| 95 void getClient(const blink::WebString&, |
| 96 blink::WebServiceWorkerClientCallbacks*) override; |
| 95 void getClients(const blink::WebServiceWorkerClientQueryOptions&, | 97 void getClients(const blink::WebServiceWorkerClientQueryOptions&, |
| 96 blink::WebServiceWorkerClientsCallbacks*) override; | 98 blink::WebServiceWorkerClientsCallbacks*) override; |
| 97 void openWindow(const blink::WebURL&, | 99 void openWindow(const blink::WebURL&, |
| 98 blink::WebServiceWorkerClientCallbacks*) override; | 100 blink::WebServiceWorkerClientCallbacks*) override; |
| 99 void setCachedMetadata(const blink::WebURL&, | 101 void setCachedMetadata(const blink::WebURL&, |
| 100 const char* data, | 102 const char* data, |
| 101 size_t size) override; | 103 size_t size) override; |
| 102 void clearCachedMetadata(const blink::WebURL&) override; | 104 void clearCachedMetadata(const blink::WebURL&) override; |
| 103 void workerReadyForInspection() override; | 105 void workerReadyForInspection() override; |
| 104 | 106 |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 void OnPostMessage( | 221 void OnPostMessage( |
| 220 const base::string16& message, | 222 const base::string16& message, |
| 221 const std::vector<TransferredMessagePort>& sent_message_ports, | 223 const std::vector<TransferredMessagePort>& sent_message_ports, |
| 222 const std::vector<int>& new_routing_ids); | 224 const std::vector<int>& new_routing_ids); |
| 223 | 225 |
| 224 void OnCrossOriginMessageToWorker( | 226 void OnCrossOriginMessageToWorker( |
| 225 const NavigatorConnectClient& client, | 227 const NavigatorConnectClient& client, |
| 226 const base::string16& message, | 228 const base::string16& message, |
| 227 const std::vector<TransferredMessagePort>& sent_message_ports, | 229 const std::vector<TransferredMessagePort>& sent_message_ports, |
| 228 const std::vector<int>& new_routing_ids); | 230 const std::vector<int>& new_routing_ids); |
| 231 void OnDidGetClient(int request_id, const ServiceWorkerClientInfo& client); |
| 229 void OnDidGetClients( | 232 void OnDidGetClients( |
| 230 int request_id, const std::vector<ServiceWorkerClientInfo>& clients); | 233 int request_id, const std::vector<ServiceWorkerClientInfo>& clients); |
| 231 void OnOpenWindowResponse(int request_id, | 234 void OnOpenWindowResponse(int request_id, |
| 232 const ServiceWorkerClientInfo& client); | 235 const ServiceWorkerClientInfo& client); |
| 233 void OnOpenWindowError(int request_id, const std::string& message); | 236 void OnOpenWindowError(int request_id, const std::string& message); |
| 234 void OnFocusClientResponse(int request_id, | 237 void OnFocusClientResponse(int request_id, |
| 235 const ServiceWorkerClientInfo& client); | 238 const ServiceWorkerClientInfo& client); |
| 236 void OnNavigateClientResponse(int request_id, | 239 void OnNavigateClientResponse(int request_id, |
| 237 const ServiceWorkerClientInfo& client); | 240 const ServiceWorkerClientInfo& client); |
| 238 void OnNavigateClientError(int request_id, const GURL& url); | 241 void OnNavigateClientError(int request_id, const GURL& url); |
| (...skipping 23 matching lines...) Expand all Loading... |
| 262 // Initialized on the worker thread in workerContextStarted and | 265 // Initialized on the worker thread in workerContextStarted and |
| 263 // destructed on the worker thread in willDestroyWorkerContext. | 266 // destructed on the worker thread in willDestroyWorkerContext. |
| 264 scoped_ptr<WorkerContextData> context_; | 267 scoped_ptr<WorkerContextData> context_; |
| 265 | 268 |
| 266 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerContextClient); | 269 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerContextClient); |
| 267 }; | 270 }; |
| 268 | 271 |
| 269 } // namespace content | 272 } // namespace content |
| 270 | 273 |
| 271 #endif // CONTENT_RENDERER_SERVICE_WORKER_SERVICE_WORKER_CONTEXT_CLIENT_H_ | 274 #endif // CONTENT_RENDERER_SERVICE_WORKER_SERVICE_WORKER_CONTEXT_CLIENT_H_ |
| OLD | NEW |