OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 // http://www.w3.org/TR/push-api/#extensions-to-the-serviceworkerregistration-in terface | |
6 | |
7 [ | |
8 RuntimeEnabled=PushMessaging, | |
9 ] partial interface ServiceWorkerRegistration { | |
10 // FIXME: this may be renamed depending on the result of https://github.com/ w3c/push-api/issues/47 | |
Peter Beverloo
2014/12/10 00:18:18
This FIXME feels a bit useless. If we rename it we
Michael van Ouwerkerk
2014/12/10 15:13:06
You asked for a TODO here. Are you sure about this
| |
11 readonly attribute PushManager pushManager; | |
12 }; | |
OLD | NEW |