Home | History | Annotate | Download | only in phone

Lines Matching defs:NotificationMgr

72  * @see PhoneGlobals.notificationMgr
74 public class NotificationMgr {
75 private static final String LOG_TAG = NotificationMgr.class.getSimpleName();
92 /** The singleton NotificationMgr instance. */
93 private static NotificationMgr sInstance;
116 private NotificationMgr(PhoneGlobals app) {
151 * Initialize the singleton NotificationMgr instance.
154 * From then on, the NotificationMgr instance is available via the
155 * PhoneApp's public "notificationMgr" field, which is why there's no
158 /* package */ static NotificationMgr init(PhoneGlobals app) {
159 synchronized (NotificationMgr.class) {
161 sInstance = new NotificationMgr(app);