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

Side by Side Diff: content/common/service_worker/service_worker.mojom

Issue 2958753003: Revert "Create ServiceWorkerProviderHost before starting worker" (Closed)
Patch Set: Created 3 years, 5 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 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 module content.mojom; 5 module content.mojom;
6 6
7 import "content/common/service_worker/service_worker_provider.mojom"; 7 import "content/common/service_worker/service_worker_provider.mojom";
8 8
9 // Per-process browser-side interface. 9 // Per-process browser-side interface.
10 // The renderer uses this interface to tell the browser when potential service 10 // The renderer uses this interface to tell the browser when potential service
11 // worker clients are created and when service workers are starting up. 11 // worker clients are created and when service workers are starting up.
12 interface ServiceWorkerDispatcherHost { 12 interface ServiceWorkerDispatcherHost {
13 // Creates a content::ServiceWorkerProviderHost on the browser 13 // Creates a content::ServiceWorkerProviderHost on the browser
14 // process. |provider_info| has Mojo endpoints to connect the provider host 14 // process. |provider_info| has Mojo endpoints to connect the provider host
15 // and the provider on the renderer together. The lifetime of 15 // and the provider on the renderer together. The lifetime of
16 // ServiceWorkerProviderHost will be tied to the 16 // ServiceWorkerProviderHost will be tied to the
17 // mojom::ServiceWorkerProviderHost interface. 17 // mojom::ServiceWorkerProviderHost interface.
18 OnProviderCreated(ServiceWorkerProviderHostInfo provider_info); 18 OnProviderCreated(ServiceWorkerProviderHostInfo provider_info);
19
20 // Informs the browser that a service worker is starting up. |provider_id|
21 // identifies the ServiceWorkerProviderHost hosting the service
22 // worker. |version_id| identifies the ServiceWorkerVersion and
23 // |embedded_worker_id| identifies the EmbeddedWorkerInstance.
24 OnSetHostedVersionId(int32 provider_id,
25 int64 version_id,
26 int32 embedded_worker_id);
19 }; 27 };
OLDNEW
« no previous file with comments | « content/common/service_worker/embedded_worker.mojom ('k') | content/common/service_worker/service_worker_provider.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698