Chromium Code Reviews| Index: third_party/WebKit/Source/modules/nfc/NFCWatchOptions.idl |
| diff --git a/third_party/WebKit/Source/modules/nfc/NFCWatchOptions.idl b/third_party/WebKit/Source/modules/nfc/NFCWatchOptions.idl |
| index 971497a05250db00b544305624b76746a974bc83..8a4722dedaa56f2801beb82d34b74a41f5787148 100644 |
| --- a/third_party/WebKit/Source/modules/nfc/NFCWatchOptions.idl |
| +++ b/third_party/WebKit/Source/modules/nfc/NFCWatchOptions.idl |
| @@ -2,15 +2,13 @@ |
| // 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/#idl-def-nfcwatchoptions |
| +// https://w3c.github.io/web-nfc/#the-nfcwatchoptions-dictionary |
| enum NFCWatchMode { "web-nfc-only", "any" }; |
|
riju_
2015/11/16 15:05:01
Thanks for cleaning this up, I forgot to remove th
shalamov
2015/11/19 12:59:06
Acknowledged.
|
| -[ |
| - RuntimeEnabled=WebNFC, |
| -] dictionary NFCWatchOptions { |
| - USVString url = ""; |
| - USVString kind = ""; |
| - USVString type = ""; |
| +dictionary NFCWatchOptions { |
| + USVString url = ""; |
| + NFCRecordType? recordType; |
| + USVString mediaType = ""; |
| NFCWatchMode mode = "web-nfc-only"; |
| }; |