• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package android.app.pinner;
2 
3 import android.app.pinner.PinnedFileStat;
4 
5 /**
6  * Interface for processes to communicate with system's PinnerService.
7  * @hide
8  */
9 interface IPinnerService {
10     @EnforcePermission("DUMP")
getPinnerStats()11     List<PinnedFileStat> getPinnerStats();
12 }