| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 [JavaPackage="org.chromium.mojom.nfc"] | 5 [JavaPackage="org.chromium.mojom.nfc"] |
| 6 module nfc_message_sink; | 6 module nfc_message_sink; |
| 7 | 7 |
| 8 // Private interface for the shell. When the shell connects to |Nfc| this | 8 // Private interface for the shell. When the shell connects to |Nfc| this |
| 9 // interface will be returned which can be used to send NFC data to registered | 9 // interface will be returned which can be used to send NFC data to registered |
| 10 // apps. | 10 // apps. |
| 11 [ServiceName="nfc_message_sink::NfcMessageSink"] |
| 11 interface NfcMessageSink { | 12 interface NfcMessageSink { |
| 12 OnNfcMessage(array<uint8> data); | 13 OnNfcMessage(array<uint8> data); |
| 13 }; | 14 }; |
| OLD | NEW |