Chromium Code Reviews| Index: device/nfc/nfc.mojom |
| diff --git a/device/nfc/nfc.mojom b/device/nfc/nfc.mojom |
| index 413be2e4f8e6e9fb8a1dbe72686b8264ab9fd055..3f344a157880b732438186dc4388da813104fc60 100644 |
| --- a/device/nfc/nfc.mojom |
| +++ b/device/nfc/nfc.mojom |
| @@ -66,6 +66,9 @@ struct NFCMessage { |
| // path. It represents Web NFC id, that can be used for matching Web NFC |
| // content with the filter specified by |url| field in NFCWatchOptions. |
| string? url; |
| + |
| + // Maximum size of NFC message that can be sent over IPC is 32KB. |
| + const uint32 kMaxSize = 32768; |
|
Tom Sepez
2016/11/21 18:12:34
Where do we check this (on the receiving side)?
shalamov
2016/11/22 12:50:41
It is in another CL: https://codereview.chromium.o
|
| }; |
| struct NFCPushOptions { |