Chromium Code Reviews| Index: third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerMessageEvent.idl |
| diff --git a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerMessageEvent.idl b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerMessageEvent.idl |
| index 711f643d8abf0b0bf436b74a237ab53cd30c09a0..7fb2ac5e728c54270a1412251dc6d958daa2ed8f 100644 |
| --- a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerMessageEvent.idl |
| +++ b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerMessageEvent.idl |
| @@ -5,7 +5,11 @@ |
| // https://slightlyoff.github.io/ServiceWorker/spec/service_worker/#serviceworkermessage-event-interface |
| [ |
| - Constructor(DOMString type, optional ServiceWorkerMessageEventInit eventInitDict), |
| + // TODO(bashi): Stop using CostomConstructor once we solve reference |
|
nhiroki
2016/02/10 03:44:17
s/Costom/Custom/
bashi
2016/02/10 04:43:38
Done.
|
| + // circulation between Blink and V8. http://crbug.com/529941 |
|
nhiroki
2016/02/10 03:44:17
Apparently, this issue was already fixed. Should w
bashi
2016/02/10 04:43:38
Thanks for the catch. It should be http://crbug.co
|
| + // Constructor should be: |
| + // Constructor(DOMString type, optional ServiceWorkerMessageEventInit eventInitDict), |
| + CustomConstructor, |
| Exposed=(Window, Worker), |
| ] interface ServiceWorkerMessageEvent : Event { |
| [Custom=Getter] readonly attribute any data; |