NotificationManagerInternal.java revision 9158825f9c41869689d6b1786d7c7aa8bdd524ce
1package com.android.server.notification;
2
3import android.app.Notification;
4
5public interface NotificationManagerInternal {
6    void enqueueNotification(String pkg, String basePkg, int callingUid, int callingPid,
7            String tag, int id, Notification notification, int[] idReceived, int userId);
8}
9