| Index: third_party/WebKit/Source/modules/nfc/NFCPushOptions.idl
|
| diff --git a/third_party/WebKit/Source/modules/nfc/NFCPushOptions.idl b/third_party/WebKit/Source/modules/nfc/NFCPushOptions.idl
|
| index 2fe24e8115913e0cca118045932bcf46327cd15b..c7c78fb543d0106faa9ffa318893ae81da6196e6 100644
|
| --- a/third_party/WebKit/Source/modules/nfc/NFCPushOptions.idl
|
| +++ b/third_party/WebKit/Source/modules/nfc/NFCPushOptions.idl
|
| @@ -2,11 +2,12 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -// https://w3c.github.io/web-nfc/index.html#the-nfcpushoptions-dictionary
|
| +// https://w3c.github.io/web-nfc/#the-nfcpushoptions-dictionary
|
|
|
| -enum NFCPushTarget { "tag", "peer" };
|
| +enum NFCPushTarget { "tag", "peer", "any" };
|
|
|
| dictionary NFCPushOptions {
|
| - NFCPushTarget target;
|
| - unsigned long timeout;
|
| + NFCPushTarget target = "any";
|
| + unrestricted double timeout; // in ms
|
| + boolean ignoreRead = true;
|
| };
|
|
|