Home | History | Annotate | Download | only in browser

Lines Matching defs:notification

19 import android.app.Notification;
81 * a system notification that will guide the user to the WebSettings UI. There,
100 // The system status bar notification id.
102 // The time of the last out of space notification
104 // Delay between two notification in ms
106 // Delay in ms used when resetting the notification time
240 // We only fire the notification if there are some other websites
244 // the notification would not help at all since there is nothing
322 // We only fire the notification if there are some other websites
326 // the notification would not help at all since there is nothing
346 // Reset the notification time; we use this iff the user
387 // Schedules a system notification that takes the user to the WebSettings
399 // setup the notification boilerplate.
409 Notification notification = new Notification(icon, title, when);
410 notification.setLatestEventInfo(mContext, title, text, contentIntent);
411 notification.flags |= Notification.FLAG_AUTO_CANCEL;
418 mgr.notify(OUT_OF_SPACE_ID, notification);