Chromium Code Reviews| Index: third_party/WebKit/Source/modules/serviceworkers/Client.idl |
| diff --git a/third_party/WebKit/Source/modules/serviceworkers/Client.idl b/third_party/WebKit/Source/modules/serviceworkers/Client.idl |
| index 6d0d4390c1c2268b66e33b898877952cd6378378..45eb1fa02985dadba8b486b2fec6c3deb2b5bb15 100644 |
| --- a/third_party/WebKit/Source/modules/serviceworkers/Client.idl |
| +++ b/third_party/WebKit/Source/modules/serviceworkers/Client.idl |
| @@ -8,6 +8,7 @@ |
| ImplementedAs=ServiceWorkerClient, |
| ] interface Client { |
| readonly attribute USVString url; |
| + readonly attribute ClientType type; |
|
foolip
2017/05/03 15:18:10
Please match the order of attributes in the spec.
leonhsl(Using Gerrit)
2017/05/04 03:18:04
Done.
|
| readonly attribute ContextFrameType frameType; |
|
foolip
2017/05/03 15:18:10
If frameType isn't in the spec, please file a bug
leonhsl(Using Gerrit)
2017/05/04 03:18:05
Done. Put frameType into a "Non-standard" section
|
| readonly attribute DOMString id; |
| [PostMessage, RaisesException, CallWith=ScriptState] void postMessage(SerializedScriptValue message, optional sequence<Transferable> transfer); |