Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(210)

Side by Side Diff: device/nfc/public/java/src/org/chromium/device/nfc/NfcDelegate.java

Issue 2894373002: [DeviceService] Move //device/nfc to be part of the internal impl of Device Service (Closed)
Patch Set: Modify code comment Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « device/nfc/public/java/BUILD.gn ('k') | services/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 package org.chromium.device.nfc;
6
7 import android.app.Activity;
8
9 import org.chromium.base.Callback;
10
11 /** Interface that allows the NFC implementation to access the Activity associat ed with a given
12 * client. |hostId| is the same ID passed in NFCProvider::GetNFCForHost().
13 */
14 public interface NfcDelegate {
15 /** Calls |callback| with the Activity associated with |hostId|, and subsequ ently calls
16 * |callback| again whenever the Activity associated with |hostId| changes.
17 */
18 void trackActivityForHost(int hostId, Callback<Activity> callback);
19
20 /** Called when the NFC implementation no longer needs to track the Activity associated with
21 * |hostId|.
22 */
23 void stopTrackingActivityForHost(int hostId);
24 }
OLDNEW
« no previous file with comments | « device/nfc/public/java/BUILD.gn ('k') | services/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698