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

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

Issue 2653493009: Add two interfaces for ServiceWorkerProviderContext/ProviderHost (Closed)
Patch Set: Rebased Created 3 years, 6 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
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 module content.mojom;
6
7 // mojom::ServiceWorkerProviderHost is a browser-side interface. The renderer
8 // uses this interface to request the browser to do operations involving service
9 // worker registrations.
10 interface ServiceWorkerProviderHost {
11 // TODO(shimazu): implement them.
12 // register() => ();
13 // getRegistation() => ();
14 // getRegistrations() => ();
15 // getRegistrationForReady() => ();
16 };
17
18 // mojom::ServiceWorkerProvider is a renderer-side interface.
19 // The browser process uses this interface to carry messages to the page's or
falken 2017/05/30 04:12:32 s/carry/send s/the page's/pages
shimazu 2017/05/30 07:24:35 Done.
20 // the service worker's context.
21 interface ServiceWorkerProvider {
22 // TODO(shimazu): implement them.
23 // associateRegistration();
24 // disassociateRegistration();
25 // setControllerServiceWorker();
26 // messageToDocument();
27 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698