Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // TODO(blundell): This should be moved to device.mojom. | |
| 6 module device.nfc.mojom; | |
| 7 | |
| 8 import "device/nfc/nfc.mojom"; | |
| 9 | |
| 10 interface NFCProvider { | |
| 11 | |
|
Ken Rockot(use gerrit already)
2017/05/08 15:45:07
nit: no vertical space
blundell
2017/05/09 14:46:19
heh, I don't know why I have this impulse to do th
| |
| 12 // Gets an NFC that is associated with |host_id|. |host_id| | |
| 13 // is used to obtain the Activity that this NFC instance should use on | |
| 14 // Android (see NFCDelegate.java). | |
| 15 GetNFCForHost(int32 host_id, NFC& nfc); | |
| 16 }; | |
| OLD | NEW |