OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 21 matching lines...) Expand all Loading... | |
32 | 32 |
33 [ | 33 [ |
34 Exposed=ServiceWorker, | 34 Exposed=ServiceWorker, |
35 Global=(Worker,ServiceWorker), | 35 Global=(Worker,ServiceWorker), |
36 RuntimeEnabled=ServiceWorker, | 36 RuntimeEnabled=ServiceWorker, |
37 TypeChecking=Interface, | 37 TypeChecking=Interface, |
38 ] interface ServiceWorkerGlobalScope : WorkerGlobalScope { | 38 ] interface ServiceWorkerGlobalScope : WorkerGlobalScope { |
39 | 39 |
40 readonly attribute Clients clients; | 40 readonly attribute Clients clients; |
41 readonly attribute ServiceWorkerRegistration registration; | 41 readonly attribute ServiceWorkerRegistration registration; |
42 [RuntimeEnabled=NavigatorConnect] readonly attribute StashedPortCollection por ts; | |
nhiroki
2015/05/13 01:09:37
For improving modularity, can we move this to Serv
Marijn Kruisselbrink
2015/05/13 01:46:53
Certainly possible, although I think conceptually
kinuko
2015/05/13 04:30:44
Was taking a look around spec/github/models, it lo
nhiroki
2015/05/13 07:12:49
I see... at first, I thought this should be under
| |
42 | 43 |
43 [CallWith=ScriptState, RaisesException] Promise<Response> fetch(RequestInfo in put, optional Dictionary init); | 44 [CallWith=ScriptState, RaisesException] Promise<Response> fetch(RequestInfo in put, optional Dictionary init); |
44 | 45 |
45 [RaisesException] void close(); | 46 [RaisesException] void close(); |
46 | 47 |
47 [CallWith=ScriptState] Promise<void> skipWaiting(); | 48 [CallWith=ScriptState] Promise<void> skipWaiting(); |
48 | 49 |
49 attribute EventHandler onactivate; | 50 attribute EventHandler onactivate; |
50 [RuntimeEnabled=ServiceWorkerOnFetch] attribute EventHandler onfetch; | 51 [RuntimeEnabled=ServiceWorkerOnFetch] attribute EventHandler onfetch; |
51 attribute EventHandler oninstall; | 52 attribute EventHandler oninstall; |
52 attribute EventHandler onmessage; | 53 attribute EventHandler onmessage; |
53 }; | 54 }; |
OLD | NEW |